Uses of Class
org.ujmp.core.enums.DBType
-
Packages that use DBType Package Description org.ujmp.core.enums org.ujmp.core.export.destination org.ujmp.core.export.exporter org.ujmp.core.export.format org.ujmp.core.io org.ujmp.core.matrix.factory org.ujmp.jdbc -
-
Uses of DBType in org.ujmp.core.enums
Methods in org.ujmp.core.enums that return DBType Modifier and Type Method Description static DBType
DBType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DBType[]
DBType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of DBType in org.ujmp.core.export.destination
Methods in org.ujmp.core.export.destination with parameters of type DBType Modifier and Type Method Description void
DefaultMatrixClipboardExportDestination. asSQL(DBType db, java.lang.String databaseName, java.lang.String tableName)
void
DefaultMatrixFileExportDestination. asSQL(DBType db, java.lang.String databaseName, java.lang.String tableName)
void
DefaultMatrixStreamExportDestination. asSQL(DBType db, java.lang.String databaseName, java.lang.String tableName)
java.lang.String
DefaultMatrixStringExportDestination. asSQL(DBType db, java.lang.String databaseName, java.lang.String tableName)
void
DefaultMatrixWriterExportDestination. asSQL(DBType db, java.lang.String databaseName, java.lang.String tableName)
-
Uses of DBType in org.ujmp.core.export.exporter
Methods in org.ujmp.core.export.exporter with parameters of type DBType Modifier and Type Method Description void
DefaultMatrixWriterSQLExporter. asSQL(DBType db, java.lang.String databaseName, java.lang.String tableName)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getBigDecimalType(DBType db)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getBigIntType(DBType db)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getByteArrayType(DBType db)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getColumnType(DBType db, Matrix matrix, long column)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getDoubleType(DBType db)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getFloatType(DBType db)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getIntType(DBType db)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getLongType(DBType db)
private static java.lang.String
DefaultMatrixWriterSQLExporter. getStringType(DBType db)
-
Uses of DBType in org.ujmp.core.export.format
Methods in org.ujmp.core.export.format with parameters of type DBType Modifier and Type Method Description void
MatrixSQLExportFormat. asSQL(DBType db, java.lang.String databaseName, java.lang.String tableName)
java.lang.String
MatrixSQLStringExportFormat. asSQL(DBType db, java.lang.String databaseName, java.lang.String tableName)
-
Uses of DBType in org.ujmp.core.io
Methods in org.ujmp.core.io with parameters of type DBType Modifier and Type Method Description static ObjectMatrix
ImportMatrixJDBC. fromDatabase(DBType type, java.lang.String host, int port, java.lang.String database, java.lang.String sqlStatement, java.lang.String username, java.lang.String password)
static DenseObjectMatrix2D
LinkMatrixJDBC. toDatabase(DBType type, java.lang.String host, int port, java.lang.String database, java.lang.String sqlStatement, java.lang.String username, java.lang.String password)
-
Uses of DBType in org.ujmp.core.matrix.factory
Methods in org.ujmp.core.matrix.factory with parameters of type DBType Modifier and Type Method Description ObjectMatrix
AbstractMatrixFactory. importFromJDBC(DBType type, java.lang.String host, int port, java.lang.String database, java.lang.String sqlStatement, java.lang.String username, java.lang.String password)
ObjectMatrix2D
AbstractMatrixFactory. linkToJDBC(DBType type, java.lang.String host, int port, java.lang.String database, java.lang.String sqlStatement, java.lang.String username, java.lang.String password)
-
Uses of DBType in org.ujmp.jdbc
Methods in org.ujmp.jdbc that return DBType Modifier and Type Method Description private static DBType
ExportMatrixJDBC. getDBTypeFromUrl(java.lang.String url)
Methods in org.ujmp.jdbc with parameters of type DBType Modifier and Type Method Description static DenseObjectMatrix2D
ImportMatrixJDBC. fromDatabase(DBType type, java.lang.String host, int port, java.lang.String databasename, java.lang.String sqlStatement, java.lang.String username, java.lang.String password)
static void
ExportMatrixJDBC. toDatabase(Matrix matrix, DBType type, java.lang.String host, int port, java.lang.String databasename, java.lang.String tablename, java.lang.String username, java.lang.String password)
static AbstractDenseJDBCMatrix2D
LinkMatrixJDBC. toDatabase(DBType type, java.lang.String host, int port, java.lang.String databasename, java.lang.String sqlStatement, java.lang.String username, java.lang.String password)
-