org.polypheny.prism.ExecuteUnparameterizedStatementRequestOrBuilder 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 ExecuteUnparameterizedStatementRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.ExecuteUnparameterizedStatementRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Specifies the query language of the statement being executed.
*
*
* string language_name = 1;
* @return The languageName.
*/
java.lang.String getLanguageName();
/**
*
* Specifies the query language of the statement being executed.
*
*
* string language_name = 1;
* @return The bytes for languageName.
*/
com.google.protobuf.ByteString
getLanguageNameBytes();
/**
*
* The statement to be executed.
*
*
* string statement = 2;
* @return The statement.
*/
java.lang.String getStatement();
/**
*
* The statement to be executed.
*
*
* string statement = 2;
* @return The bytes for statement.
*/
com.google.protobuf.ByteString
getStatementBytes();
/**
*
*
*(Optional) Number of rows to include into the response message of this call.
*More rows can be fetched afterwards. If not specified, a default value is used.
*
*
* 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. If not specified, a default value is used.
*
*
* optional int32 fetch_size = 3;
* @return The fetchSize.
*/
int getFetchSize();
/**
*
*
*(Optional) The namespace under which the statement should be executed.
*If not specified, the namespace specified for the connection is used.
*
*
* optional string namespace_name = 4;
* @return Whether the namespaceName field is set.
*/
boolean hasNamespaceName();
/**
*
*
*(Optional) The namespace under which the statement should be executed.
*If not specified, the namespace specified for the connection is used.
*
*
* optional string namespace_name = 4;
* @return The namespaceName.
*/
java.lang.String getNamespaceName();
/**
*
*
*(Optional) The namespace under which the statement should be executed.
*If not specified, the namespace specified for the connection is used.
*
*
* optional string namespace_name = 4;
* @return The bytes for namespaceName.
*/
com.google.protobuf.ByteString
getNamespaceNameBytes();
}