Wrong Number Or Types Of Arguments In Call To Procedure With Use Zxjdbc
I took official example from http://www.jython.org/archive/21/docs/zxjdbc.html: Oracle >>> c = db.cursor() # open the database as in the examples above >>> c.exec
Solution 1:
When you have an OUT or IN OUT parameter, you must pass a variable, not a literal for that parameter. How else can the procedure pass the value back?
Solution 2:
You can take a look at PLSQLSample.java
Post a Comment for "Wrong Number Or Types Of Arguments In Call To Procedure With Use Zxjdbc"