public class ForwardingResultSet extends ForwardingStructReader implements ResultSet
Constructor and Description |
---|
ForwardingResultSet(ResultSet delegate) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Explicitly close the result set, releasing any associated resources.
|
Struct |
getCurrentRowAsStruct()
Creates an immutable version of the row that the result set is positioned over.
|
com.google.spanner.v1.ResultSetStats |
getStats()
Returns the
ResultSetStats for the query only if the query was executed in either the
PLAN or the PROFILE mode via the ReadContext.analyzeQuery(Statement,
com.google.cloud.spanner.ReadContext.QueryAnalyzeMode) method. |
boolean |
next()
Advances the result set to the next row, returning false if no such row exists.
|
getBoolean, getBoolean, getBooleanArray, getBooleanArray, getBooleanList, getBooleanList, getBytes, getBytes, getBytesList, getBytesList, getColumnCount, getColumnIndex, getColumnType, getColumnType, getDate, getDate, getDateList, getDateList, getDouble, getDouble, getDoubleArray, getDoubleArray, getDoubleList, getDoubleList, getLong, getLong, getLongArray, getLongArray, getLongList, getLongList, getString, getString, getStringList, getStringList, getStructList, getStructList, getTimestamp, getTimestamp, getTimestampList, getTimestampList, getType, isNull, isNull
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getBoolean, getBoolean, getBooleanArray, getBooleanArray, getBooleanList, getBooleanList, getBytes, getBytes, getBytesList, getBytesList, getColumnCount, getColumnIndex, getColumnType, getColumnType, getDate, getDate, getDateList, getDateList, getDouble, getDouble, getDoubleArray, getDoubleArray, getDoubleList, getDoubleList, getLong, getLong, getLongArray, getLongArray, getLongList, getLongList, getString, getString, getStringList, getStringList, getStructList, getStructList, getTimestamp, getTimestamp, getTimestampList, getTimestampList, getType, isNull, isNull
public ForwardingResultSet(ResultSet delegate)
public boolean next() throws SpannerException
ResultSet
next
in interface ResultSet
SpannerException
public Struct getCurrentRowAsStruct()
ResultSet
Struct
objects
is generally more expensive than processing the ResultSet
directly.getCurrentRowAsStruct
in interface ResultSet
public void close()
ResultSet
ResultSet
before ResultSet.next()
has returned false
or
raised an exception. Calling close()
is also allowed if the result set has been fully
consumed, so a recommended practice is to unconditionally close the result set once it is done
with, typically using a try-with-resources construct.close
in interface ResultSet
close
in interface AutoCloseable
public com.google.spanner.v1.ResultSetStats getStats()
ResultSet
ResultSetStats
for the query only if the query was executed in either the
PLAN
or the PROFILE
mode via the ReadContext.analyzeQuery(Statement,
com.google.cloud.spanner.ReadContext.QueryAnalyzeMode)
method. Attempts to call this method on
a ResultSet
not obtained from analyzeQuery
result in an UnsupportedOperationException
. This method must be called after ResultSet.next()
has
returned @{code false}. Calling it before that will result in an IllegalStateException
.Copyright © 2018 Google. All rights reserved.