Package | Description |
---|---|
adql.db | |
adql.translator |
Modifier and Type | Field | Description |
---|---|---|
DBType |
FunctionDef.returnType |
Type of the result returned by this function.
|
protected DBType |
DefaultDBColumn.type |
Type of the column in the "database".
|
DBType |
FunctionDef.FunctionParam.type |
Parameter type.
|
Modifier and Type | Method | Description |
---|---|---|
DBType |
DBColumn.getDatatype() |
Get the type of this column (as closed as possible from the "database" type).
|
DBType |
DBCommonColumn.getDatatype() |
|
DBType |
DefaultDBColumn.getDatatype() |
Modifier and Type | Method | Description |
---|---|---|
boolean |
DBType.isCompatible(DBType t) |
Tell whether this
DBType is compatible with the given one. |
void |
DefaultDBColumn.setDatatype(DBType type) |
Set the type of this column.
|
Constructor | Description |
---|---|
DefaultDBColumn(java.lang.String dbName,
DBType type,
DBTable table) |
Builds a default
DBColumn with the given DB name and DB table. |
DefaultDBColumn(java.lang.String dbName,
java.lang.String adqlName,
DBType type,
DBTable table) |
Builds a default
DBColumn with the given DB name, DB table and ADQL name. |
FunctionDef(java.lang.String fctName,
DBType returnType) |
Create a function definition.
|
FunctionDef(java.lang.String fctName,
DBType returnType,
FunctionDef.FunctionParam[] params) |
|
FunctionParam(java.lang.String paramName,
DBType paramType) |
Create a function parameter.
|
Modifier and Type | Method | Description |
---|---|---|
abstract DBType |
JDBCTranslator.convertTypeFromDB(int dbmsType,
java.lang.String rawDbmsTypeName,
java.lang.String dbmsTypeName,
java.lang.String[] typeParams) |
Convert any type provided by a JDBC driver into a type understandable by the ADQL/TAP library.
|
DBType |
MySQLTranslator.convertTypeFromDB(int dbmsType,
java.lang.String rawDbmsTypeName,
java.lang.String dbmsTypeName,
java.lang.String[] params) |
|
DBType |
PgSphereTranslator.convertTypeFromDB(int dbmsType,
java.lang.String rawDbmsTypeName,
java.lang.String dbmsTypeName,
java.lang.String[] params) |
|
DBType |
PostgreSQLTranslator.convertTypeFromDB(int dbmsType,
java.lang.String rawDbmsTypeName,
java.lang.String dbmsTypeName,
java.lang.String[] params) |
|
DBType |
SQLServerTranslator.convertTypeFromDB(int dbmsType,
java.lang.String rawDbmsTypeName,
java.lang.String dbmsTypeName,
java.lang.String[] params) |
Modifier and Type | Method | Description |
---|---|---|
abstract java.lang.String |
JDBCTranslator.convertTypeToDB(DBType type) |
Convert any type provided by the ADQL/TAP library into a type understandable by a JDBC driver.
|
java.lang.String |
MySQLTranslator.convertTypeToDB(DBType type) |
|
java.lang.String |
PgSphereTranslator.convertTypeToDB(DBType type) |
|
java.lang.String |
PostgreSQLTranslator.convertTypeToDB(DBType type) |
|
java.lang.String |
SQLServerTranslator.convertTypeToDB(DBType type) |