All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.polypheny.prism.ExecuteNamedStatementRequestOrBuilder Maven / Gradle / Ivy

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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy