From Stored Procedure, return OUT parameter & OUT cursor & parse result (Oracle)

前端 未结 5 2116
走了就别回头了
走了就别回头了 2021-01-01 02:36

Question : Is it possible to return using OUT :

Both : A variable & A cursor, from my code below ??


I saw a similar question for SqlDB but after

5条回答
  •  没有蜡笔的小新
    2021-01-01 02:37

    I don't know which library you use for Oracle access... but usually it is possible to declare the cursor out and the param out both as Parameters and use ExecuteNonQuery with an anoynmous PL/SQL-block (in which you call the Stored Procedure)... for example with the Devart dotconnect components this is possible... (not affilliated, just a happy customer)

提交回复
热议问题