org.dbunit.ext.postgresql.PostgresqlDataTypeFactory Java Examples
The following examples show how to use
org.dbunit.ext.postgresql.PostgresqlDataTypeFactory.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ShardingJdbcDatabaseTester.java From sharding-jdbc-1.5.1 with Apache License 2.0 | 6 votes |
@Override public IDatabaseConnection getConnection() throws Exception { IDatabaseConnection result = super.getConnection(); DatabaseConfig dbConfig = result.getConfig(); dbConfig.setProperty(DatabaseConfig.FEATURE_CASE_SENSITIVE_TABLE_NAMES, false); dbConfig.setProperty(DatabaseConfig.FEATURE_DATATYPE_WARNING, false); if ("org.h2.Driver".equals(driverClass)) { dbConfig.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new H2DataTypeFactory()); } else if ("com.mysql.jdbc.Driver".equals(driverClass)) { dbConfig.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new MySqlDataTypeFactory()); } else if ("org.postgresql.Driver".equals(driverClass)) { dbConfig.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new PostgresqlDataTypeFactory()); } else if ("oracle.jdbc.driver.OracleDriver".equals(driverClass)) { dbConfig.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new Oracle10DataTypeFactory()); } else if ("com.microsoft.sqlserver.jdbc.SQLServerDriver".equals(driverClass)) { dbConfig.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new MsSqlDataTypeFactory()); } return result; }
Example #2
Source File: DBUnitUtil.java From sharding-jdbc-1.5.1 with Apache License 2.0 | 6 votes |
public static IDatabaseConnection getConnection(final DataBaseEnvironment dbEnv, final Connection connection) throws DatabaseUnitException { switch (dbEnv.getDatabaseType()) { case H2: return new H2Connection(connection, "PUBLIC"); case MySQL: return new MySqlConnection(connection, null); case PostgreSQL: DatabaseConnection databaseConnection = new DatabaseConnection(connection); databaseConnection.getConfig().setProperty("http://www.dbunit.org/properties/datatypeFactory", new PostgresqlDataTypeFactory()); return databaseConnection; case Oracle: return new OracleConnection(connection, "JDBC"); case SQLServer: return new MsSqlConnection(connection); default: throw new UnsupportedOperationException(dbEnv.getDatabaseType().name()); } }
Example #3
Source File: RiderDataSource.java From database-rider with Apache License 2.0 | 6 votes |
private IDataTypeFactory getDataTypeFactory(DBType dbType) { switch (dbType) { case HSQLDB: return new HsqldbDataTypeFactory(); case H2: return new H2DataTypeFactory(); case MYSQL: return new MySqlDataTypeFactory(); case POSTGRESQL: return new PostgresqlDataTypeFactory(); case ORACLE: return new Oracle10DataTypeFactory(); case MSSQL: return new MsSqlDataTypeFactory(); case DB2: return new Db2DataTypeFactory(); default: return null; } }
Example #4
Source File: PostgresqlConnectionFactory.java From jpa-unit with Apache License 2.0 | 5 votes |
@Override public IDatabaseConnection createConnection(final Connection connection, final String schema) throws DatabaseUnitException { final IDatabaseConnection dbUnitConnection = new DatabaseConnection(connection, schema); dbUnitConnection.getConfig().setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new PostgresqlDataTypeFactory()); return dbUnitConnection; }
Example #5
Source File: DbUnitSupport.java From proarc with GNU General Public License v3.0 | 5 votes |
private IDatabaseConnection createProgresConnection(Connection c) throws DatabaseUnitException { DatabaseConnection dbc = new DatabaseConnection(c); DatabaseConfig config = dbc.getConfig(); config.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new PostgresqlDataTypeFactory()); // Progress cannot handle columns names like XML thus we have to escape them. config.setProperty(DatabaseConfig.PROPERTY_ESCAPE_PATTERN, "\"?\""); config.setProperty(DatabaseConfig.FEATURE_CASE_SENSITIVE_TABLE_NAMES, false); return dbc; }