org.polypheny.prism.ExecuteNamedStatementRequestOrBuilder 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 ExecuteNamedStatementRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.ExecuteNamedStatementRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The unique identifier of the prepared statement to be executed.
*
*
* int32 statement_id = 1;
* @return The statementId.
*/
int getStatementId();
/**
*
* The named parameters to be used with the statement.
*
*
* .org.polypheny.prism.NamedParameters parameters = 2;
* @return Whether the parameters field is set.
*/
boolean hasParameters();
/**
*
* The named parameters to be used with the statement.
*
*
* .org.polypheny.prism.NamedParameters parameters = 2;
* @return The parameters.
*/
org.polypheny.prism.NamedParameters getParameters();
/**
*
* The named parameters to be used with the statement.
*
*
* .org.polypheny.prism.NamedParameters parameters = 2;
*/
org.polypheny.prism.NamedParametersOrBuilder getParametersOrBuilder();
/**
*
* (Optional) Number of rows to include into the response message of this call. More rows can be fetched afterwards.
*
*
* optional int32 fetch_size = 3;
* @return Whether the fetchSize field is set.
*/
boolean hasFetchSize();
/**
*
* (Optional) Number of rows to include into the response message of this call. More rows can be fetched afterwards.
*
*
* optional int32 fetch_size = 3;
* @return The fetchSize.
*/
int getFetchSize();
}