Class OdbcRequest
- java.lang.Object
-
- org.apache.ignite.internal.processors.odbc.ClientListenerRequestNoId
-
- org.apache.ignite.internal.processors.odbc.odbc.OdbcRequest
-
- All Implemented Interfaces:
ClientListenerRequest
- Direct Known Subclasses:
OdbcQueryCloseRequest,OdbcQueryExecuteBatchRequest,OdbcQueryExecuteRequest,OdbcQueryFetchRequest,OdbcQueryGetColumnsMetaRequest,OdbcQueryGetQueryMetaRequest,OdbcQueryGetTablesMetaRequest,OdbcQueryMoreResultsRequest,OdbcStreamingBatchRequest
public class OdbcRequest extends ClientListenerRequestNoId
SQL listener command request.
-
-
Field Summary
Fields Modifier and Type Field Description static byteMETA_COLSGet columns meta query.static byteMETA_PARAMSGet parameters meta.static byteMETA_RESULTSETGet resultset columns meta.static byteMETA_TBLSGet columns meta query.static byteMORE_RESULTSGet next result set.static byteQRY_CLOSEClose query.static byteQRY_EXECExecute sql query.static byteQRY_EXEC_BATCHExecute sql query with the batch of parameters.static byteQRY_FETCHFetch query results.static byteSTREAMING_BATCHProcess ordered streaming batch.-
Fields inherited from interface org.apache.ignite.internal.processors.odbc.ClientListenerRequest
HANDSHAKE
-
-
Constructor Summary
Constructors Constructor Description OdbcRequest(byte cmd)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description bytecommand()-
Methods inherited from class org.apache.ignite.internal.processors.odbc.ClientListenerRequestNoId
requestId
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.ignite.internal.processors.odbc.ClientListenerRequest
beforeStartupRequest
-
-
-
-
Field Detail
-
QRY_EXEC
public static final byte QRY_EXEC
Execute sql query.- See Also:
- Constant Field Values
-
QRY_FETCH
public static final byte QRY_FETCH
Fetch query results.- See Also:
- Constant Field Values
-
QRY_CLOSE
public static final byte QRY_CLOSE
Close query.- See Also:
- Constant Field Values
-
META_COLS
public static final byte META_COLS
Get columns meta query.- See Also:
- Constant Field Values
-
META_TBLS
public static final byte META_TBLS
Get columns meta query.- See Also:
- Constant Field Values
-
META_PARAMS
public static final byte META_PARAMS
Get parameters meta.- See Also:
- Constant Field Values
-
QRY_EXEC_BATCH
public static final byte QRY_EXEC_BATCH
Execute sql query with the batch of parameters.- See Also:
- Constant Field Values
-
MORE_RESULTS
public static final byte MORE_RESULTS
Get next result set.- See Also:
- Constant Field Values
-
STREAMING_BATCH
public static final byte STREAMING_BATCH
Process ordered streaming batch.- See Also:
- Constant Field Values
-
META_RESULTSET
public static final byte META_RESULTSET
Get resultset columns meta.- See Also:
- Constant Field Values
-
-