postgresql 預存程序動態更新資料

來源:互聯網
上載者:User

標籤: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 預存程序動態更新資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.