I believe is does not and I cannot seem to figure out how to telll Hibernate not to issue multiple queries. I will try the code you provided to check for sure.
Thanks verymuch,
Rich
quote="pb00067"]
Quote:
JDBCExceptionReporter - ERROR - Driver can process one query at one time
I guess you are performing 2 queries with 'cursor' (alternative would be 'select') using the same connection.
Not all drivers support MultipleOpenResults
http://java.sun.com/javase/6/docs/api/j ... enResults()
Please check if your driver supports MultipleOpenResults
Code:
Class.forName("yourDriverClass");
Connection con = java.sql.DriverManager.getConnection(connectionUrl,userName,password);
System.out(con.getMetaData().supportsMultipleOpenResults());
con.close();
[/quote]