標籤:com test 注意 類型 class text sub 時間格式 c#
-- 目標:動態更新表中資料-- 老規矩上代碼
---------------------------
--tablename 表名
--feildname 欄位名數組
--feildvalue 欄位值數組
--returnvalue 傳回值
create or replace function f_update( tablename text, condition text, feildname text[], feildvalue text[], out returnvalue text) as $$declare mysql text; myid integer; myresult integer; items text; counts integer; i integer;begin counts:=array_length(feildname,1); mysql:=‘update ‘||quote_ident(tablename)||‘ set ‘; for i in 1..counts loop mysql:= mysql||quote_ident(feildname[i])||‘=‘‘‘||feildvalue[i]||‘‘‘,‘; end loop; mysql:=substring(mysql from 1 for (char_length(mysql)-1)) || ‘ where 1=1 ‘||condition; execute mysql; GET DIAGNOSTICS myresult:= ROW_COUNT; if myresult<>0 then returnvalue=‘{"success":"執行更新‘||mysql||‘成功!"}‘; else returnvalue=‘{"success":"執行更新‘||mysql||‘失敗!"}‘; end if;end;$$ language plpgsql;-- 實際操作create table test(id integer,name text,gen_time date,out returnvalue);insert into test(id,name,gen_time) values(1,‘office‘,‘2017-08-19‘);select f_update(‘test‘,‘ and id=1‘,‘{name,gen_time}‘,‘{ssqhan,2017-08-20}‘);-- 得到如下結果:
--裡面的資料有點不太一樣,不影響大家看
--=======================================================================
--不知道大家沒有注意到,雖然 gen_time為date類型,但在UPDATE時,只要輸入時間格式,
--系統會自動的轉成date格式
--這是不是說,時間格式,在傳遞參數的時候,直接用字串就OK?
--有待驗證,今天放在這裡,以後有機會直接用C#訪問資料庫看會不會報錯!
--也希望做過的童鞋一起參與討論。
--==============================================
postgresql 預存程序動態更新資料