Package de.elo.ix.jscript.handler
Interface IDBConnectionHandler.ResultSetWrapper
- Enclosing interface:
- IDBConnectionHandler
public static interface IDBConnectionHandler.ResultSetWrapper
Wrapper class for the JDBC ResultSet. This class provides ony the functions of the ResultSet
class that return serializable data types.
-
Method Summary
Modifier and TypeMethodDescriptiongetBoolean
(int col) Return the value as a Java Boolean object.getByte
(int col) Return the value as a Java Byte object.byte[]
getBytes
(int col) Return the value as a Java byte[] object.getDouble
(int col) Return the value as a Java Double object.getInt
(int col) Return the value as a Java Integer object.getInteger
(int col) Return the value as a Java Integer object.getLong
(int col) Return the value as a Java Long object.getShort
(int col) Return the value as a Java Short object.getString
(int col) Return the value as a Java String object.
-
Method Details
-
getBoolean
Return the value as a Java Boolean object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-
getByte
Return the value as a Java Byte object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-
getShort
Return the value as a Java Short object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-
getInteger
Return the value as a Java Integer object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-
getInt
Return the value as a Java Integer object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-
getLong
Return the value as a Java Long object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-
getDouble
Return the value as a Java Double object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-
getString
Return the value as a Java String object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-
getBytes
Return the value as a Java byte[] object.- Parameters:
col
- ResultSet column- Returns:
- Column value
- Throws:
Exception
-