Methods Summary |
---|
public void | afterLast()Go to a location just after the last result
// TODO : not sure the best way to handle this.
// The non-performant way :
last();
next();
afterScrollOperation();
|
public void | beforeFirst()Go to a location just before first result (this is the initial location)
try {
getResultSet().beforeFirst();
}
catch( SQLException e ) {
throw JDBCExceptionHelper.convert(
getSession().getFactory().getSQLExceptionConverter(),
e,
"exception calling beforeFirst()"
);
}
currentRow = null;
currentPosition = 0;
|
public boolean | first()Go to the first result
beforeFirst();
boolean more = next();
afterScrollOperation();
return more;
|
protected java.lang.Object[] | getCurrentRow()
return currentRow;
|
public int | getRowNumber()Get the current location in the result set. The first row is number 0, contrary to JDBC.
return currentPosition;
|
public boolean | isFirst()Is this the first result?
return currentPosition == 1;
|
public boolean | isLast()Is this the last result?
if ( maxPosition == null ) {
// we have not yet hit the last result...
return false;
}
else {
return currentPosition == maxPosition.intValue();
}
|
public boolean | last()Go to the last result
boolean more = false;
if ( maxPosition != null ) {
for ( int i = currentPosition; i < maxPosition.intValue(); i++ ) {
more = next();
}
}
else {
try {
if ( getResultSet().isAfterLast() ) {
// should not be able to reach last without maxPosition being set
// unless there are no results
return false;
}
while ( !getResultSet().isAfterLast() ) {
more = next();
}
}
catch( SQLException e ) {
throw JDBCExceptionHelper.convert(
getSession().getFactory().getSQLExceptionConverter(),
e,
"exception calling isAfterLast()"
);
}
}
afterScrollOperation();
return more;
|
public boolean | next()Advance to the next result
if ( maxPosition != null && maxPosition.intValue() <= currentPosition ) {
currentRow = null;
currentPosition = maxPosition.intValue() + 1;
return false;
}
Object row = getLoader().loadSequentialRowsForward(
getResultSet(),
getSession(),
getQueryParameters(),
false
);
boolean afterLast;
try {
afterLast = getResultSet().isAfterLast();
}
catch( SQLException e ) {
throw JDBCExceptionHelper.convert(
getSession().getFactory().getSQLExceptionConverter(),
e,
"exception calling isAfterLast()"
);
}
currentPosition++;
currentRow = new Object[] { row };
if ( afterLast ) {
if ( maxPosition == null ) {
// we just hit the last position
maxPosition = new Integer( currentPosition );
}
}
afterScrollOperation();
return true;
|
public boolean | previous()Retreat to the previous result
if ( currentPosition <= 1 ) {
currentPosition = 0;
currentRow = null;
return false;
}
Object loadResult = getLoader().loadSequentialRowsReverse(
getResultSet(),
getSession(),
getQueryParameters(),
false,
( maxPosition != null && currentPosition > maxPosition.intValue() )
);
currentRow = new Object[] { loadResult };
currentPosition--;
afterScrollOperation();
return true;
|
public boolean | scroll(int positions)Scroll an arbitrary number of locations
boolean more = false;
if ( positions > 0 ) {
// scroll ahead
for ( int i = 0; i < positions; i++ ) {
more = next();
if ( !more ) {
break;
}
}
}
else if ( positions < 0 ) {
// scroll backward
for ( int i = 0; i < ( 0 - positions ); i++ ) {
more = previous();
if ( !more ) {
break;
}
}
}
else {
throw new HibernateException( "scroll(0) not valid" );
}
afterScrollOperation();
return more;
|
public boolean | setRowNumber(int rowNumber)Set the current location in the result set, numbered from either the first row (row number 0), or the last
row (row number -1).
if ( rowNumber == 1 ) {
return first();
}
else if ( rowNumber == -1 ) {
return last();
}
else if ( maxPosition != null && rowNumber == maxPosition.intValue() ) {
return last();
}
return scroll( rowNumber - currentPosition );
|