Article:
 |
|
Stored Procedures for Java Programmers
|
| Subject: |
|
JDBC support for Cursors |
| Date: |
|
2003-08-15 13:14:07 |
| From: |
|
nferrier
|
Response to: JDBC support for Cursors
|
|
Hi Gokul.
Technically you're right, but most DBMS don't seem to support this style. Maybe it has just escaped most people attention, tucked away in the javadoc there. I'm not sure from what version it came into being.
I think the getObject() style works on DB2 as well though, doesn't it? Whereas doing:
ResultSet rs = someCallable.executeQuery();
definitely doesn't work on (at least) early version of Oracle JDBC and not at all on PostgreSQL (I know coz I wrote the PG support).
Cheers!
|
Showing messages 1 through 1 of 1.
-
JDBC support for Cursors
2003-08-22 15:56:05
anonymous2
[View]
Exception in thread "main" No class found for refcursor
at org.postgresql.jdbc1.AbstractJdbc1Connection.getObject(AbstractJdbc1Connection.java:693)
This is using PostgreSQL 7.3.4 with its supplied JDBC driver. What version did you write this support for?