Call Oracle package function using Odbc from C#

前端 未结 4 1504
隐瞒了意图╮
隐瞒了意图╮ 2021-01-24 16:47

I have a function defined inside an Oracle package:

CREATE OR REPLACE PACKAGE BODY TESTUSER.TESTPKG as
  FUNCTION testfunc(n IN NUMBER) RETURN NUMBER as
  begin
         


        
4条回答
  •  攒了一身酷
    2021-01-24 17:22

    In the past I would use something like to following for the command string:

    "{? = CALL JF_TESTUSER.TESTPKG.testFunc(?)}"

    See the following article for more information

提交回复
热议问题