Uses of Class
adql.db.DBType
Packages that use DBType
-
Uses of DBType in adql.db
Modifier and TypeFieldDescriptionfinal DBType
FunctionDef.returnType
Type of the result returned by this function.protected DBType
DefaultDBColumn.type
Type of the column in the "database".final DBType
FunctionDef.FunctionParam.type
Parameter type.Modifier and TypeMethodDescriptionDBColumn.getDatatype()
Get the type of this column (as closed as possible from the "database" type).final DBType
DBCommonColumn.getDatatype()
final DBType
DefaultDBColumn.getDatatype()
Modifier and TypeMethodDescriptionboolean
DBType.isCompatible
(DBType t) Tell whether thisDBType
is compatible with the given one.final void
DefaultDBColumn.setDatatype
(DBType type) Set the type of this column.ModifierConstructorDescriptionDefaultDBColumn
(String dbName, DBType type, DBTable table) Builds a defaultDBColumn
with the given DB name and DB table.DefaultDBColumn
(String dbName, String adqlName, DBType type, DBTable table) Builds a defaultDBColumn
with the given DB name, DB table and ADQL name.FunctionDef
(String fctName, DBType returnType) Create a function definition.FunctionDef
(String fctName, DBType returnType, FunctionDef.FunctionParam[] params) FunctionParam
(String paramName, DBType paramType) Create a function parameter. -
Uses of DBType in adql.translator
Methods in adql.translator that return DBTypeModifier and TypeMethodDescriptionabstract DBType
JDBCTranslator.convertTypeFromDB
(int dbmsType, String rawDbmsTypeName, String dbmsTypeName, String[] typeParams) Convert any type provided by a JDBC driver into a type understandable by the ADQL/TAP library.MySQLTranslator.convertTypeFromDB
(int dbmsType, String rawDbmsTypeName, String dbmsTypeName, String[] params) PgSphereTranslator.convertTypeFromDB
(int dbmsType, String rawDbmsTypeName, String dbmsTypeName, String[] params) PostgreSQLTranslator.convertTypeFromDB
(int dbmsType, String rawDbmsTypeName, String dbmsTypeName, String[] params) SQLServerTranslator.convertTypeFromDB
(int dbmsType, String rawDbmsTypeName, String dbmsTypeName, String[] params) Methods in adql.translator with parameters of type DBTypeModifier and TypeMethodDescriptionabstract String
JDBCTranslator.convertTypeToDB
(DBType type) Convert any type provided by the ADQL/TAP library into a type understandable by a JDBC driver.MySQLTranslator.convertTypeToDB
(DBType type) PgSphereTranslator.convertTypeToDB
(DBType type) PostgreSQLTranslator.convertTypeToDB
(DBType type) SQLServerTranslator.convertTypeToDB
(DBType type)