Java / JDBC
How to determine your data store or the JDBC driver supports different ResultSet types and concurrency?
Not all databases or JDBC Drivers support all ResultSet types or concurrency. DatabaseMetaData.supportsResultSetType checks if the specified ResultSet type supported and the DatabaseMetaData.supportsResultSetConcurrency finds if the specified concurrency level is supported.
More Related questions...