How I could determine if JDBC driver is TYPE_FORWARD_ONLY? In my program the user configures connection parameters to database and he could use any JDBC driver in the class path. I want to know if the driver is TYPE_FORWARD_ONLY before executing any statements. Is this possible?
How I could determine if JDBC driver is TYPE_FORWARD_ONLY ? In my program the
Share
DatabaseMetaData has a method supportsResultSetType(int type) that you could use to check if the ResultSet supports
TYPE_FORWARD_ONLY.