BenCole
BenCole

Reputation: 2112

Retrieve multiple ResultSets without using StoredProcedures

Is there a way in Java 1.5 to retrieve multiple ResultSet objects from a DB2 database with a single SQL call without resorting to StoredProcedures / CallableStatements?

Upvotes: 0

Views: 67

Answers (1)

kosa
kosa

Reputation: 66677

No. I don't think it is possible to get multiple ResultSet objects in single SQL call. You may refer JDBC API doc.

Upvotes: 1

Related Questions