This server class is deprecated. You should update your application to use server class aseodbc.
A server with server class ASEJDBC is an Adaptive Server Enterprise (version 10 and later) server. No special requirements exist for the configuration of an Adaptive Server Enterprise data source.
When you issue a CREATE TABLE statement, SQL Anywhere automatically converts the data types to the corresponding Adaptive Server Enterprise data types using the following data type conversions.
SAP Sybase IQ Data Type | Adaptive Server Enterprise Default Data Type |
---|---|
BIT | bit |
TINYINT | tinyint |
SMALLINT | smallint |
INT | int |
INTEGER | integer |
DECIMAL [defaults p=30, s=6] | numeric(30,6) |
DECIMAL(128,128) | not supported |
NUMERIC [defaults p=30 s=6] | numeric(30,6) |
NUMERIC(128,128) | not supported |
FLOAT | real |
REAL | real |
DOUBLE | float |
SMALLMONEY | numeric(10,4) |
MONEY | numeric(19,4) |
DATE | datetime |
TIME | datetime |
TIMESTAMP | datetime |
SMALLDATETIME | datetime |
DATETIME | datetime |
CHAR(n) | varchar(n) |
CHARACTER(n) | varchar(n) |
VARCHAR(n) | varchar(n) |
CHARACTER VARYING(n) | varchar(n) |
LONG VARCHAR | text |
TEXT | text |
BINARY(n) | binary(n) |
LONG BINARY | image |
IMAGE | image |
BIGINT | numeric(19,0) |