Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: JDBC execute statement with Brackets - NullPointerException
Hi Oliver. This may be an oracle driver bug, to do with it's mistakenly processing the '[' and ']' as JDBC SQL Extension syntax, such as
p = c.prepareStatement("{ call myProc(?) }");
Try calling setEscapeProcessing(false) on your statement
before executing your SQL.
Lemme know...
Joe Weinstein at BEA Systems Received on Tue Jan 23 2007 - 06:49:14 CST
![]() |
![]() |