public interface SnowflakeResultSet
| Modifier and Type | Method and Description |
|---|---|
String |
getQueryID() |
List<SnowflakeResultSetSerializable> |
getResultSetSerializables(long maxSizeInBytes)
Get a list of ResultSetSerializables for the ResultSet in order to parallel processing
|
QueryStatus |
getStatus()
This function retrieves the status of an asynchronous query.
|
String getQueryID() throws SQLException
SQLExceptionQueryStatus getStatus() throws SQLException
SQLExceptionList<SnowflakeResultSetSerializable> getResultSetSerializables(long maxSizeInBytes) throws SQLException
maxSizeInBytes - The expected max data size wrapped in the ResultSetSerializables object.
NOTE: this parameter is intended to make the data size in each serializable object to be
less than it. But if user specifies a small value which may be smaller than the data size
of one result chunk. So the definition can't be guaranteed completely. For this special
case, one serializable object is used to wrap the data chunk.SQLException - if fails to get the ResultSetSerializable objects.Copyright © 2022. All rights reserved.