开发者

PL/SQL procedure within a package

How can I use a store开发者_如何学JAVAd PACKAGE foo on the database using PL/SQL?

Say the package contains a PROCEDURE bar. How can I call it?


The procedure is called by ..

In SQL*Plus:

declare
begin
  foo.bar(par1, par2, par3);
end;

From odbc/jdbc you typically use the following SQL:

SQL_STRING = "{ call foo.bar(?, ?, ?) }"
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜