> On Nov 7, 4:03 pm, "joeNOS...@BEA.com" <joe.weinst...@gmail.com>
> wrote:
[quoted text clipped - 9 lines]
> clientID IN NUMBER (20,0)
> gives me a compile error.
nevermind. So if you do this:
CallableStatement cs = conn.prepareCall("{call InsertValue(?, 1, 1,
235234)}");
cs.registerOutParameter(1, Types.INTEGER);
boolean result = cs.execute();
int ID = cs.getInt(1);
does it work?
I would make a simple standalone program that creates it's own
table, inserts a row or two, and creates a procedure with the
same signature as yours, and then duplicates the problem. That
would be perfect for Oracle support.
Joe
swetha - 10 Nov 2007 10:35 GMT
On Nov 8, 6:08 pm, "joeNOS...@BEA.com" <joe.weinst...@gmail.com>
wrote:
> So if you do this:
>
[quoted text clipped - 5 lines]
>
> does it work?
Yes this works and I get a valid ID returned.
> I would make a simple standalone program that creates it's own
> table, inserts a row or two, and creates a procedure with the
> same signature as yours, and then duplicates the problem. That
> would be perfect for Oracle support.
I'll try doing that and send it to Oracle. Thanks.
Swetha