1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
618 views
by rich-c-2789 (17.6k points)
The error:

"the given SQL statement produces an unxpected ResultSet object"

Was seen trying to call a stored procedure.  I am using a MariaDB database.

1 Answer

0 votes
If you see this error it is likely due to trying to call a stored procedure that returns a result set using pQuery.doUpdateQuery. Recommend using pQuery.callStoredProcedure instead.

We have only seen this error when using a MariaDB database with the 3.x JDBC client.
by rich-c-2789 (17.6k points)
edited by rich-c-2789
...