Package de.uplanet.lucy.server.util.db
Class DbResultSet
- java.lang.Object
-
- de.uplanet.lucy.server.util.db.DbResultSet
-
- All Implemented Interfaces:
de.uplanet.lucy.server.util.db.IDbResultSet,de.uplanet.lucy.server.util.db.IValueAccess,de.uplanet.lucy.server.util.db.IValueHolderAccess,de.uplanet.util.ICloseable,AutoCloseable,Iterable<IDbRow>
public final class DbResultSet extends Object implements de.uplanet.lucy.server.util.db.IDbResultSet, Iterable<IDbRow>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()List<?>findAll(groovy.lang.Closure<?> p_closure)Calls the given closure for every row in the result set and returns a list of rows for which the closure is valid.BigDecimalgetBigDecimalValue(int p_iIdx)BigDecimalgetBigDecimalValue(int p_iIdx, BigDecimal p_valueIfNull)BooleangetBooleanValue(int p_iIdx)BooleangetBooleanValue(int p_iIdx, Boolean p_valueIfNull)bytegetByteValue(int p_iIdx)BytegetByteValue(int p_iIdx, Byte p_valueIfNull)DategetDateValue(int p_iIdx)DategetDateValue(int p_iIdx, Calendar p_cal)DategetDateValue(int p_iIdx, Date p_valueIfNull)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)de.uplanet.lucy.server.util.db.DbRowListgetDisconnectedRowList()Create a list of disconnected rows from this result set.DoublegetDoubleValue(int p_iIdx)DoublegetDoubleValue(int p_iIdx, Double p_valueIfNull)FloatgetFloatValue(int p_iIdx)FloatgetFloatValue(int p_iIdx, Float p_valueIfNull)IntegergetIntValue(int p_iIdx)IntegergetIntValue(int p_iIdx, Integer p_valueIfNull)LonggetLongValue(int p_iIdx)LonggetLongValue(int p_iIdx, Long p_valueIfNull)intgetRowCount()Get the number of rows read so far.ShortgetShortValue(int p_iIdx)ShortgetShortValue(int p_iIdx, Short p_valueIfNull)StringgetStringValue(int p_iIdx)StringgetStringValue(int p_iIdx, String p_valueIfNull)TimestampgetTimestampValue(int p_iIdx)TimestampgetTimestampValue(int p_iIdx, Timestamp p_valueIfNull)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)DategetTimeValue(int p_iIdx, Calendar p_cal)DategetTimeValue(int p_iIdx, Date p_valueIfNull)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)ObjectgetValue(int p_iIdx)ObjectgetValue(int p_iIdx, Object p_valueIfNull)IValueHolder<?>getValueHolder(int p_iIdx)IValueHolder<?>getValueHolder(int p_iIdx, String p_strDataTypeAsSerializedQName)IValueHolder<?>getValueHolder(int p_iIdx, String p_strDataTypeAsSerializedQName, IValueHolder<?> p_valueIfNull)IValueHolder<?>getValueHolder(int p_iIdx, QName p_qmnDataType)IValueHolder<?>getValueHolder(int p_iIdx, QName p_qmnDataType, IValueHolder<?> p_valueIfNull)Collection<?>grep(Object p_filter)This method is not supportedIterator<IDbRow>iterator()booleannext()booleanwasNull(int p_iIdx)-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
getRowCount
public int getRowCount()
Get the number of rows read so far.- Returns:
- The number of rows read so far.
-
next
public boolean next() throws SQLException- Specified by:
nextin interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLException
-
wasNull
public boolean wasNull(int p_iIdx) throws SQLException- Specified by:
wasNullin interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLException
-
getValueHolder
public IValueHolder<?> getValueHolder(int p_iIdx) throws SQLException
- Specified by:
getValueHolderin interfacede.uplanet.lucy.server.util.db.IValueHolderAccess- Throws:
SQLException
-
getValueHolder
public IValueHolder<?> getValueHolder(int p_iIdx, QName p_qmnDataType) throws SQLException
- Specified by:
getValueHolderin interfacede.uplanet.lucy.server.util.db.IValueHolderAccess- Throws:
SQLException
-
getValueHolder
public IValueHolder<?> getValueHolder(int p_iIdx, String p_strDataTypeAsSerializedQName) throws SQLException
- Specified by:
getValueHolderin interfacede.uplanet.lucy.server.util.db.IValueHolderAccess- Throws:
SQLException
-
getValueHolder
public IValueHolder<?> getValueHolder(int p_iIdx, QName p_qmnDataType, IValueHolder<?> p_valueIfNull) throws SQLException
- Specified by:
getValueHolderin interfacede.uplanet.lucy.server.util.db.IValueHolderAccess- Throws:
SQLException
-
getValueHolder
public IValueHolder<?> getValueHolder(int p_iIdx, String p_strDataTypeAsSerializedQName, IValueHolder<?> p_valueIfNull) throws SQLException
- Specified by:
getValueHolderin interfacede.uplanet.lucy.server.util.db.IValueHolderAccess- Throws:
SQLException
-
close
public void close() throws SQLException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLException
-
getValue
public Object getValue(int p_iIdx) throws SQLException
- Specified by:
getValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLException
-
getValue
public Object getValue(int p_iIdx, Object p_valueIfNull) throws SQLException
- Specified by:
getValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLException
-
getBooleanValue
public Boolean getBooleanValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getBooleanValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getBooleanValue
public Boolean getBooleanValue(int p_iIdx, Boolean p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getBooleanValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getByteValue
public byte getByteValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException- Specified by:
getByteValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getByteValue
public Byte getByteValue(int p_iIdx, Byte p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getByteValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getShortValue
public Short getShortValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getShortValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getShortValue
public Short getShortValue(int p_iIdx, Short p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getShortValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getIntValue
public Integer getIntValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getIntValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getIntValue
public Integer getIntValue(int p_iIdx, Integer p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getIntValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getLongValue
public Long getLongValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getLongValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getLongValue
public Long getLongValue(int p_iIdx, Long p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getLongValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getFloatValue
public Float getFloatValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getFloatValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getFloatValue
public Float getFloatValue(int p_iIdx, Float p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getFloatValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDoubleValue
public Double getDoubleValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getDoubleValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDoubleValue
public Double getDoubleValue(int p_iIdx, Double p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getDoubleValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getBigDecimalValue
public BigDecimal getBigDecimalValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getBigDecimalValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getBigDecimalValue
public BigDecimal getBigDecimalValue(int p_iIdx, BigDecimal p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getBigDecimalValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getStringValue
public String getStringValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getStringValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getStringValue
public String getStringValue(int p_iIdx, String p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getStringValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimestampValue
public Timestamp getTimestampValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimestampValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimestampValue
public Timestamp getTimestampValue(int p_iIdx, Calendar p_cal) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimestampValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimestampValue
public Timestamp getTimestampValue(int p_iIdx, TimeZone p_tz) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimestampValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimestampValue
public Timestamp getTimestampValue(int p_iIdx, Timestamp p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimestampValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimestampValue
public Timestamp getTimestampValue(int p_iIdx, Timestamp p_valueIfNull, TimeZone p_tz) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimestampValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimestampValue
public Timestamp getTimestampValue(int p_iIdx, Timestamp p_valueIfNull, Calendar p_cal) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimestampValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDateValue
public Date getDateValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getDateValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDateValue
public Date getDateValue(int p_iIdx, Calendar p_cal) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getDateValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDateValue
public Date getDateValue(int p_iIdx, TimeZone p_tz) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getDateValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDateValue
public Date getDateValue(int p_iIdx, Date p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getDateValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDateValue
public Date getDateValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getDateValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDateValue
public Date getDateValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getDateValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimeValue
public Date getTimeValue(int p_iIdx) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimeValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimeValue
public Date getTimeValue(int p_iIdx, Calendar p_cal) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimeValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimeValue
public Date getTimeValue(int p_iIdx, TimeZone p_tz) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimeValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimeValue
public Date getTimeValue(int p_iIdx, Date p_valueIfNull) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimeValuein interfacede.uplanet.lucy.server.util.db.IValueAccess- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimeValue
public Date getTimeValue(int p_iIdx, Date p_valueIfNull, TimeZone p_tz) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimeValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getTimeValue
public Date getTimeValue(int p_iIdx, Date p_valueIfNull, Calendar p_cal) throws SQLException, de.uplanet.lucy.server.util.db.ValueCastException
- Specified by:
getTimeValuein interfacede.uplanet.lucy.server.util.db.IDbResultSet- Throws:
SQLExceptionde.uplanet.lucy.server.util.db.ValueCastException
-
getDisconnectedRowList
public de.uplanet.lucy.server.util.db.DbRowList getDisconnectedRowList()
Create a list of disconnected rows from this result set.Note:
- The result set data are at once fetched into memory so that calling this method may result in excessive memory consumption.
- After this method has been called, subsequent iterations over this result set will give no result. However anew call to this method will return the previous returned rows.
- Rows that were consumed in previous iterations over this result set will not be present in this list.
- Returns:
- A list of disconnected rows.
-
findAll
public List<?> findAll(groovy.lang.Closure<?> p_closure)
Calls the given closure for every row in the result set and returns a list of rows for which the closure is valid.- Parameters:
p_closure- The closure that's being called.- Returns:
- A list of rows the closure is valid for.
- Throws:
UnsupportedOperationException- - If the result set does not provide disconnected rows.
-
grep
public Collection<?> grep(Object p_filter)
This method is not supported.
- Throws:
UnsupportedOperationException
-
-