JDBC Reference
Page 18 of 31

java.sql.Connection

Table 6-6 JDBC 2.0 Connection Methods Supported

Returns

Signature

Implementation Notes

Statement

createStatement(int resultSetType, int resultSetConcurrency)

ResultSet.TYPE_FORWARD_ONLY and ResultSet.TYPE_SCROLL_INSENSITIVE are the only scrolling types supported. If you request TYPE_SCROLL_SENSITIVE, Cloudscape issues an SQLWarning and returns a TYPE_SCROLL_INSENSITIVE ResultSet.

ResultSet.CONCUR_READ_ONLY is the only concurrency supported. If you request a CONCUR_UPDATABLE ResultSet, Cloudscape issues an SQLWarning and returns a CONCUR_READ_ONLY ResultSet.

(Use ResultSet.getWarnings to see warnings.)

PreparedStatement

prepareStatement(String sql, int resultSetType, int resultSetConcurrency)

CallableStatement

prepareCall(String sql, int resultSetType, int resultSetConcurrency

ResultSet.Type_FORWARD_ONLY is the only resultSetType supported.

ResultSet.CONCUR_READ_ONLY is the only concurrency supported. If you request a CONCUR_UPDATABLE ResultSet, Cloudscape issues an SQLWarning and returns a CONCUR_READ_ONLY ResultSet.