org.jooq.tools.jdbc
Class JDBC41ResultSet

java.lang.Object
  extended by org.jooq.tools.jdbc.JDBC41ResultSet

public abstract class JDBC41ResultSet
extends Object

Add JDBC 4.1 API compliance to a JDBC 4.0 ResultSet

Extend this type if you want to compile ResultSet implementations on both JDBC 4.0 (JDK 6) and 4.1 (JDK 7).

Author:
Lukas Eder

Constructor Summary
JDBC41ResultSet()
           
 
Method Summary
<T> T
getObject(int columnIndex, Class<T> type)
           
<T> T
getObject(String columnLabel, Class<T> type)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JDBC41ResultSet

public JDBC41ResultSet()
Method Detail

getObject

public <T> T getObject(int columnIndex,
                       Class<T> type)
            throws SQLException
Throws:
SQLException

getObject

public <T> T getObject(String columnLabel,
                       Class<T> type)
            throws SQLException
Throws:
SQLException


Copyright © 2012. All Rights Reserved.