- Are all the required JDBC drivers to establish connectivity to my database part of the JDK?
- Are the code examples from the JDBC API Tutorial and Reference, Second Edition available online?
- Are there any ODBC drivers that do not work with the JDBC-ODBC Bridge?
- Can I get information about a ResultSet's associated Statement and Connection in a method without having or adding specific arguments for the Statement and Connection?
- Can I set up a connection pool with multiple user IDs? The single ID we are forced to use causes problems when debugging the DBMS.
- Can I use JDBC to execute non-standard features that my DBMS provides?
- Can I use the JDBC-ODBC bridge driver in an applet?
- Can ResultSets be passed between methods of a class? Are there any special usage
- Can the JDBC-ODBC Bridge be used with applets?
- Can you scroll a result set returned from a stored procedure? I am returning a result set from a stored procedure with type SQLRPGLE but once I reach the end of the result set it does not allow repositioning. Is it possible to scroll this result set?
