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 void
close()
Date
getDateValue(int p_iIdx, Calendar p_cal)
Date
getDateValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal)
Date
getDateValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz)
Date
getDateValue(int p_iIdx, TimeZone p_tz)
Timestamp
getTimestampValue(int p_iIdx, Timestamp p_valueIfNull, Calendar p_cal)
Timestamp
getTimestampValue(int p_iIdx, Timestamp p_valueIfNull, TimeZone p_tz)
Timestamp
getTimestampValue(int p_iIdx, Calendar p_cal)
Timestamp
getTimestampValue(int p_iIdx, TimeZone p_tz)
Date
getTimeValue(int p_iIdx, Calendar p_cal)
Date
getTimeValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal)
Date
getTimeValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz)
Date
getTimeValue(int p_iIdx, TimeZone p_tz)
boolean
next()
-
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:
close
in interfaceAutoCloseable
- Throws:
SQLException
-
getTimestampValue
Timestamp getTimestampValue(int p_iIdx, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getTimestampValue
Timestamp getTimestampValue(int p_iIdx, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getTimestampValue
Timestamp getTimestampValue(int p_iIdx, Timestamp p_valueIfNull, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getTimestampValue
Timestamp getTimestampValue(int p_iIdx, Timestamp p_valueIfNull, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getDateValue
Date getDateValue(int p_iIdx, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getDateValue
Date getDateValue(int p_iIdx, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getDateValue
Date getDateValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getDateValue
Date getDateValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getTimeValue
Date getTimeValue(int p_iIdx, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getTimeValue
Date getTimeValue(int p_iIdx, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getTimeValue
Date getTimeValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
getTimeValue
Date getTimeValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal) throws SQLException, ValueCastException
- Throws:
SQLException
ValueCastException
-
-