Package org.firebirdsql.gds.ng
Class SqlCountHolder
- java.lang.Object
- 
- org.firebirdsql.gds.ng.SqlCountHolder
 
- 
 public final class SqlCountHolder extends java.lang.ObjectClass for holding the SQL counts (update, delete, select, insert) for a statement execution.The longvalues returned from thegetLongXXXCountmethods should be considered as unsigned- Since:
- 3.0
- Author:
- Mark Rotteveel
 
- 
- 
Constructor SummaryConstructors Constructor Description SqlCountHolder(long updateCount, long deleteCount, long insertCount, long selectCount)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIntegerDeleteCount()intgetIntegerInsertCount()intgetIntegerSelectCount()intgetIntegerUpdateCount()longgetLongDeleteCount()longgetLongInsertCount()longgetLongSelectCount()longgetLongUpdateCount()
 
- 
- 
- 
Method Detail- 
getIntegerUpdateCountpublic int getIntegerUpdateCount() - Returns:
- Update count as int, or 0 if the update count was too large.
- See Also:
- getLongUpdateCount()
 
 - 
getLongUpdateCountpublic long getLongUpdateCount() - Returns:
- Number of updated records
 
 - 
getIntegerDeleteCountpublic int getIntegerDeleteCount() - Returns:
- Delete count as int, or 0 if the delete count was too large.
- See Also:
- getLongDeleteCount()
 
 - 
getLongDeleteCountpublic long getLongDeleteCount() - Returns:
- Number of deleted records
 
 - 
getIntegerInsertCountpublic int getIntegerInsertCount() - Returns:
- Insert count as int, or 0 if the insert count was too large.
- See Also:
- getLongInsertCount()
 
 - 
getLongInsertCountpublic long getLongInsertCount() - Returns:
- Number of inserted records
 
 - 
getIntegerSelectCountpublic int getIntegerSelectCount() - Returns:
- Select count as int, or 0 if the select count was too large.
- See Also:
- getLongSelectCount()
 
 - 
getLongSelectCountpublic long getLongSelectCount() - Returns:
- Number of selected records
 
 
- 
 
-