Package net.anwiba.commons.jdbc.result
Interface IResult
-
- All Known Implementing Classes:
ResultSetToResultAdapter
public interface IResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.sql.ArraygetArray(int columnIndex)java.sql.ArraygetArray(java.lang.String columnName)java.io.InputStreamgetAsciiStream(int columnIndex)java.io.InputStreamgetBinaryStream(int columnIndex)java.lang.BooleangetBoolean(int columnIndex)booleangetBoolean(int columnIndex, boolean nullValue)java.lang.BytegetByte(int columnIndex)bytegetByte(int columnIndex, byte nullValue)byte[]getBytes(int columnIndex)java.util.List<java.lang.String>getColumnNames()java.sql.DategetDate(int columnIndex)java.lang.DoublegetDouble(int columnIndex)doublegetDouble(int columnIndex, double nullValue)java.lang.FloatgetFloat(int columnIndex)floatgetFloat(int columnIndex, float nullValue)java.lang.IntegergetInteger(int columnIndex)intgetInteger(int columnIndex, int nullValue)java.lang.LonggetLong(int columnIndex)longgetLong(int columnIndex, long nullValue)intgetNumberOfValues()java.lang.ObjectgetObject(int columnIndex)java.lang.ObjectgetObject(java.lang.String columnName)intgetRow()java.lang.ShortgetShort(int columnIndex)shortgetShort(int columnIndex, short nullValue)java.lang.StringgetString(int columnIndex)java.lang.StringgetString(java.lang.String string)java.sql.TimegetTime(int columnIndex)java.sql.TimestampgetTimestamp(int columnIndex)booleanhasColumn(java.lang.String string)
-
-
-
Method Detail
-
getRow
int getRow() throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getString
java.lang.String getString(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getString
java.lang.String getString(java.lang.String string) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getBoolean
java.lang.Boolean getBoolean(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getBoolean
boolean getBoolean(int columnIndex, boolean nullValue) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getByte
java.lang.Byte getByte(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getByte
byte getByte(int columnIndex, byte nullValue) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getShort
java.lang.Short getShort(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getShort
short getShort(int columnIndex, short nullValue) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getInteger
java.lang.Integer getInteger(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getInteger
int getInteger(int columnIndex, int nullValue) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getLong
java.lang.Long getLong(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getLong
long getLong(int columnIndex, long nullValue) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getFloat
java.lang.Float getFloat(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getFloat
float getFloat(int columnIndex, float nullValue) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getDouble
java.lang.Double getDouble(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getDouble
double getDouble(int columnIndex, double nullValue) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getBytes
byte[] getBytes(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getDate
java.sql.Date getDate(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getTime
java.sql.Time getTime(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getTimestamp
java.sql.Timestamp getTimestamp(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getAsciiStream
java.io.InputStream getAsciiStream(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getBinaryStream
java.io.InputStream getBinaryStream(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getObject
java.lang.Object getObject(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getObject
java.lang.Object getObject(java.lang.String columnName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getArray
java.sql.Array getArray(int columnIndex) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getArray
java.sql.Array getArray(java.lang.String columnName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getNumberOfValues
int getNumberOfValues() throws java.sql.SQLException- Throws:
java.sql.SQLException
-
hasColumn
boolean hasColumn(java.lang.String string) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getColumnNames
java.util.List<java.lang.String> getColumnNames() throws java.sql.SQLException- Throws:
java.sql.SQLException
-
-