org.polypheny.prism.ExecuteIndexedStatementBatchRequestOrBuilder 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 ExecuteIndexedStatementBatchRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.ExecuteIndexedStatementBatchRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The unique identifier of the prepared statement to be executed.
*
*
* int32 statement_id = 1;
* @return The statementId.
*/
int getStatementId();
/**
*
* List of sets of indexed parameters for multiple executions of the statement.
*
*
* repeated .org.polypheny.prism.IndexedParameters parameters = 2;
*/
java.util.List
getParametersList();
/**
*
* List of sets of indexed parameters for multiple executions of the statement.
*
*
* repeated .org.polypheny.prism.IndexedParameters parameters = 2;
*/
org.polypheny.prism.IndexedParameters getParameters(int index);
/**
*
* List of sets of indexed parameters for multiple executions of the statement.
*
*
* repeated .org.polypheny.prism.IndexedParameters parameters = 2;
*/
int getParametersCount();
/**
*
* List of sets of indexed parameters for multiple executions of the statement.
*
*
* repeated .org.polypheny.prism.IndexedParameters parameters = 2;
*/
java.util.List extends org.polypheny.prism.IndexedParametersOrBuilder>
getParametersOrBuilderList();
/**
*
* List of sets of indexed parameters for multiple executions of the statement.
*
*
* repeated .org.polypheny.prism.IndexedParameters parameters = 2;
*/
org.polypheny.prism.IndexedParametersOrBuilder getParametersOrBuilder(
int index);
}