Uses of Class
com.gpudb.protocol.ExecuteSqlRequest
-
Packages that use ExecuteSqlRequest Package Description com.gpudb com.gpudb.protocol -
-
Uses of ExecuteSqlRequest in com.gpudb
Methods in com.gpudb with parameters of type ExecuteSqlRequest Modifier and Type Method Description ExecuteSqlResponseGPUdb. executeSql(ExecuteSqlRequest request)Execute a SQL statement (query, DML, or DDL).RawExecuteSqlResponseGPUdb. executeSqlRaw(ExecuteSqlRequest request)Execute a SQL statement (query, DML, or DDL). -
Uses of ExecuteSqlRequest in com.gpudb.protocol
Methods in com.gpudb.protocol that return ExecuteSqlRequest Modifier and Type Method Description ExecuteSqlRequestExecuteSqlRequest. setData(List<ByteBuffer> data)An array of binary-encoded data for the records to be binded to the SQL query.ExecuteSqlRequestExecuteSqlRequest. setEncoding(String encoding)Specifies the encoding for returned records; either 'binary' or 'json'.ExecuteSqlRequestExecuteSqlRequest. 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.ExecuteSqlRequestExecuteSqlRequest. setOffset(long offset)A positive integer indicating the number of initial results to skip (this can be useful for paging through the results).ExecuteSqlRequestExecuteSqlRequest. setOptions(Map<String,String> options)Optional parameters.ExecuteSqlRequestExecuteSqlRequest. setRequestSchemaStr(String requestSchemaStr)Avro schema ofdata.ExecuteSqlRequestExecuteSqlRequest. setStatement(String statement)SQL statement (query, DML, or DDL) to be executed
-