java mysql儲存過程

2021-06-05 07:23:54 字數 600 閱讀 5926

conn=commondb.getconnformanipulate();

string call=";" ;

callablestatement proc=conn.preparecall(call);         //呼叫儲存過程

proc.setlong(1, obj.getgid());

proc.setstring(2, obj.gettitle());

proc.setstring(3, obj.getcontent());

proc.setint(4, obj.gettmark());

proc.setlong(5, obj.getpostuid());

proc.setint(6, obj.getcmark());

proc.setstring(7, obj.getphotosid());

proc.registeroutparameter(8,type.long);               //宣告輸出引數是什麼型別的

proc.execute();                                      //執行

gmid=proc.getlong(8);

儲存過程系列之儲存過程sql查詢儲存過程的使用

1.查詢某個表被哪些儲存過程 以下簡稱 sp 使用到 select distinct object name id from syscomments where id in select object id from sys.objects where type p and text like ta...

儲存過程系列之儲存過程sql查詢儲存過程的使用

1.查詢某個表被哪些儲存過程 以下簡稱 sp 使用到 select distinct object name id from syscomments where id in select object id from sys.objects where type p and text like ta...

Oracle儲存過程呼叫儲存過程

oracle儲存過程呼叫有返回結果集的儲存過程一般用光標的方式,宣告乙個游標,把結果集放到游標裡面,然後迴圈游標 declare newcs sys refcursor cs1 number cs2 number cstype table rowtype table列的個數和newcs返回的個數一樣...