Package de.uplanet.lucy.server.util.db
Interface IDbResultSet
-
- All Superinterfaces:
AutoCloseable,ICloseable,IValueAccess,IValueHolderAccess
- All Known Implementing Classes:
DbResultSet
public interface IDbResultSet extends IValueAccess, IValueHolderAccess, ICloseable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()DategetDateValue(int p_iIdx, Calendar p_cal)DategetDateValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal)DategetDateValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz)DategetDateValue(int p_iIdx, TimeZone p_tz)TimestampgetTimestampValue(int p_iIdx, Timestamp p_valueIfNull, Calendar p_cal)TimestampgetTimestampValue(int p_iIdx, Timestamp p_valueIfNull, TimeZone p_tz)TimestampgetTimestampValue(int p_iIdx, Calendar p_cal)TimestampgetTimestampValue(int p_iIdx, TimeZone p_tz)DategetTimeValue(int p_iIdx, Calendar p_cal)DategetTimeValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal)DategetTimeValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz)DategetTimeValue(int p_iIdx, TimeZone p_tz)booleannext()-
Methods inherited from interface de.uplanet.lucy.server.util.db.IValueAccess
getBigDecimalValue, getBigDecimalValue, getBooleanValue, getBooleanValue, getByteValue, getByteValue, getDateValue, getDateValue, getDoubleValue, getDoubleValue, getFloatValue, getFloatValue, getIntValue, getIntValue, getLongValue, getLongValue, getShortValue, getShortValue, getStringValue, getStringValue, getTimestampValue, getTimestampValue, getTimeValue, getTimeValue, getValue, getValue, wasNull
-
Methods inherited from interface de.uplanet.lucy.server.util.db.IValueHolderAccess
getValueHolder, getValueHolder, getValueHolder, getValueHolder, getValueHolder
-
-
-
-
Method Detail
-
next
boolean next() throws SQLException- Throws:
SQLException
-
close
void close() throws SQLException- Specified by:
closein interfaceAutoCloseable- Throws:
SQLException
-
getTimestampValue
Timestamp getTimestampValue(int p_iIdx, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getTimestampValue
Timestamp getTimestampValue(int p_iIdx, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getTimestampValue
Timestamp getTimestampValue(int p_iIdx, Timestamp p_valueIfNull, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getTimestampValue
Timestamp getTimestampValue(int p_iIdx, Timestamp p_valueIfNull, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getDateValue
Date getDateValue(int p_iIdx, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getDateValue
Date getDateValue(int p_iIdx, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getDateValue
Date getDateValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getDateValue
Date getDateValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getTimeValue
Date getTimeValue(int p_iIdx, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getTimeValue
Date getTimeValue(int p_iIdx, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getTimeValue
Date getTimeValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
getTimeValue
Date getTimeValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLExceptionValueCastException
-
-