JDBC Reference,
Page 17 of 30


[top]
[prev]
[next]
Documentation Top
Global Index
Reference Manual
TOC Index
Grammar index
Developer's Guide
TOC Index
Tuning Cloudscape
TOC Index

java.sql.Connection

Table 6-4 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.

[top]
[prev]
[next]


Cloudscape Version 3.0
For technical support, go to: www.cloudscape.com and click Support.
Copyright © 1998 and 1999 Cloudscape, Inc. All rights reserved.