org.polypheny.prism.FetchRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polypheny-jdbc-driver Show documentation
Show all versions of polypheny-jdbc-driver Show documentation
A standards-compliant JDBC driver for Polypheny-DB.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: org/polypheny/prism/statement_requests.proto
package org.polypheny.prism;
public interface FetchRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.FetchRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The unique identifier of the statement whose results are to be fetched.
*
*
* int32 statement_id = 1;
* @return The statementId.
*/
int getStatementId();
/**
*
* (Optional) Number of rows to retrieve in this batch. If no fetch size is specified, a default value is used.
*
*
* optional int32 fetch_size = 2;
* @return Whether the fetchSize field is set.
*/
boolean hasFetchSize();
/**
*
* (Optional) Number of rows to retrieve in this batch. If no fetch size is specified, a default value is used.
*
*
* optional int32 fetch_size = 2;
* @return The fetchSize.
*/
int getFetchSize();
}