Uses of Class
adql.db.DBType
-
Packages that use DBType Package Description adql.db adql.translator -
-
Uses of DBType in adql.db
Fields in adql.db declared as DBType Modifier and Type Field Description DBTypeFunctionDef. returnTypeType of the result returned by this function.protected DBTypeDefaultDBColumn. typeType of the column in the "database".DBTypeFunctionDef.FunctionParam. typeParameter type.Methods in adql.db that return DBType Modifier and Type Method Description DBTypeDBColumn. getDatatype()Get the type of this column (as closed as possible from the "database" type).DBTypeDBCommonColumn. getDatatype()DBTypeDefaultDBColumn. getDatatype()Methods in adql.db with parameters of type DBType Modifier and Type Method Description booleanDBType. isCompatible(DBType t)Tell whether thisDBTypeis compatible with the given one.voidDefaultDBColumn. setDatatype(DBType type)Set the type of this column.Constructors in adql.db with parameters of type DBType Constructor Description DefaultDBColumn(java.lang.String dbName, DBType type, DBTable table)Builds a defaultDBColumnwith the given DB name and DB table.DefaultDBColumn(java.lang.String dbName, java.lang.String adqlName, DBType type, DBTable table)Builds a defaultDBColumnwith 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. -
Uses of DBType in adql.translator
Methods in adql.translator that return DBType Modifier and Type Method Description abstract DBTypeJDBCTranslator. 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.DBTypeMySQLTranslator. convertTypeFromDB(int dbmsType, java.lang.String rawDbmsTypeName, java.lang.String dbmsTypeName, java.lang.String[] params)DBTypePgSphereTranslator. convertTypeFromDB(int dbmsType, java.lang.String rawDbmsTypeName, java.lang.String dbmsTypeName, java.lang.String[] params)DBTypePostgreSQLTranslator. convertTypeFromDB(int dbmsType, java.lang.String rawDbmsTypeName, java.lang.String dbmsTypeName, java.lang.String[] params)DBTypeSQLServerTranslator. convertTypeFromDB(int dbmsType, java.lang.String rawDbmsTypeName, java.lang.String dbmsTypeName, java.lang.String[] params)Methods in adql.translator with parameters of type DBType Modifier and Type Method Description abstract java.lang.StringJDBCTranslator. convertTypeToDB(DBType type)Convert any type provided by the ADQL/TAP library into a type understandable by a JDBC driver.java.lang.StringMySQLTranslator. convertTypeToDB(DBType type)java.lang.StringPgSphereTranslator. convertTypeToDB(DBType type)java.lang.StringPostgreSQLTranslator. convertTypeToDB(DBType type)java.lang.StringSQLServerTranslator. convertTypeToDB(DBType type)
-