Open GoogleCodeExporter opened 9 years ago
Actually - this was an easy fix on further investigation and was just to do
with the
capital letters in the call statement ie: CALL not call. I changed one line in
the
executeQuery method in the Statement class to fix the problem.
from if ( this.sql.indexOf("call") == 0 )
to if ( this.sql.toLocaleLowerCase().indexOf("call") == 0 )
Original comment by celeryn...@gmail.com
on 31 Mar 2009 at 6:02
Original comment by celeryn...@gmail.com
on 20 May 2009 at 12:44
Committed to subversion 178
Original comment by celeryn...@gmail.com
on 24 May 2009 at 9:21
Original issue reported on code.google.com by
celeryn...@gmail.com
on 26 Feb 2009 at 2:56