Package | Description |
---|---|
com.gpudb | |
com.gpudb.protocol |
Modifier and Type | Method and Description |
---|---|
ExecuteSqlResponse |
GPUdb.executeSql(ExecuteSqlRequest request)
Execute a SQL statement (query, DML, or DDL).
|
RawExecuteSqlResponse |
GPUdb.executeSqlRaw(ExecuteSqlRequest request)
Execute a SQL statement (query, DML, or DDL).
|
Modifier and Type | Method and Description |
---|---|
ExecuteSqlRequest |
ExecuteSqlRequest.setData(List<ByteBuffer> data)
An array of binary-encoded data for the records to be binded to the SQL
query.
|
ExecuteSqlRequest |
ExecuteSqlRequest.setEncoding(String encoding)
Specifies the encoding for returned records; either 'binary' or 'json'.
|
ExecuteSqlRequest |
ExecuteSqlRequest.setLimit(long limit)
A positive integer indicating the maximum number of results to be
returned, or END_OF_SET (-9999) to indicate that the maximum number of
results allowed by the server should be returned.
|
ExecuteSqlRequest |
ExecuteSqlRequest.setOffset(long offset)
A positive integer indicating the number of initial results to skip
(this can be useful for paging through the results).
|
ExecuteSqlRequest |
ExecuteSqlRequest.setOptions(Map<String,String> options)
Optional parameters.
|
ExecuteSqlRequest |
ExecuteSqlRequest.setRequestSchemaStr(String requestSchemaStr)
Avro schema of
data . |
ExecuteSqlRequest |
ExecuteSqlRequest.setStatement(String statement)
SQL statement (query, DML, or DDL) to be executed
|
Copyright © 2025. All rights reserved.