Class SqlStateCode
- java.lang.Object
-
- org.apache.ignite.internal.processors.odbc.SqlStateCode
-
public final class SqlStateCode extends Object
SQL state codes.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCLIENT_CONNECTION_FAILEDClient has failed to open connection with specified server.static StringCLUSTER_READ_ONLY_MODE_ENABLEDRead only mode enabled on cluster.static StringCONNECTION_CLOSEDConnection unexpectedly turned out to be in closed state.static StringCONNECTION_FAILUREIO error during communication.static StringCONNECTION_REJECTEDConnection was rejected by server.static StringCONSTRAINT_VIOLATIONData integrity constraint violation.static StringCONVERSION_FAILEDConversion failure.static StringDATA_EXCEPTIONGeneric data exception.static StringINTERNAL_ERRORInternal error.static StringINVALID_CURSOR_STATEInvalid result set state.static StringINVALID_PARAMETER_VALUEParameter type is not supported.static StringINVALID_TRANSACTION_LEVELInvalid transaction level.static StringNULL_VALUENull value occurred where it wasn't expected to.static StringPARSING_EXCEPTIONParsing exception.static StringQUERY_CANCELLEDQuery canceled.static StringUNSUPPORTED_OPERATIONRequested operation is not supported.
-
-
-
Field Detail
-
CLIENT_CONNECTION_FAILED
public static final String CLIENT_CONNECTION_FAILED
Client has failed to open connection with specified server.- See Also:
- Constant Field Values
-
CONNECTION_CLOSED
public static final String CONNECTION_CLOSED
Connection unexpectedly turned out to be in closed state.- See Also:
- Constant Field Values
-
CONNECTION_REJECTED
public static final String CONNECTION_REJECTED
Connection was rejected by server.- See Also:
- Constant Field Values
-
CONNECTION_FAILURE
public static final String CONNECTION_FAILURE
IO error during communication.- See Also:
- Constant Field Values
-
DATA_EXCEPTION
public static final String DATA_EXCEPTION
Generic data exception.- See Also:
- Constant Field Values
-
NULL_VALUE
public static final String NULL_VALUE
Null value occurred where it wasn't expected to.- See Also:
- Constant Field Values
-
INVALID_PARAMETER_VALUE
public static final String INVALID_PARAMETER_VALUE
Parameter type is not supported.- See Also:
- Constant Field Values
-
CONSTRAINT_VIOLATION
public static final String CONSTRAINT_VIOLATION
Data integrity constraint violation.- See Also:
- Constant Field Values
-
INVALID_CURSOR_STATE
public static final String INVALID_CURSOR_STATE
Invalid result set state.- See Also:
- Constant Field Values
-
CONVERSION_FAILED
public static final String CONVERSION_FAILED
Conversion failure.- See Also:
- Constant Field Values
-
INVALID_TRANSACTION_LEVEL
public static final String INVALID_TRANSACTION_LEVEL
Invalid transaction level.- See Also:
- Constant Field Values
-
UNSUPPORTED_OPERATION
public static final String UNSUPPORTED_OPERATION
Requested operation is not supported.- See Also:
- Constant Field Values
-
PARSING_EXCEPTION
public static final String PARSING_EXCEPTION
Parsing exception.- See Also:
- Constant Field Values
-
INTERNAL_ERROR
public static final String INTERNAL_ERROR
Internal error.- See Also:
- Constant Field Values
-
CLUSTER_READ_ONLY_MODE_ENABLED
public static final String CLUSTER_READ_ONLY_MODE_ENABLED
Read only mode enabled on cluster.ClusterState.ACTIVE_READ_ONLY. Value is equal toorg.h2.api.ErrorCode#DATABASE_IS_READ_ONLYcode.- See Also:
- Constant Field Values
-
QUERY_CANCELLED
public static final String QUERY_CANCELLED
Query canceled.- See Also:
- Constant Field Values
-
-