org.dbunit.ext.oracle.Oracle10DataTypeFactory Java Examples
The following examples show how to use
org.dbunit.ext.oracle.Oracle10DataTypeFactory.
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: 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 #3
Source File: Oracle10ConnectionFactoryTest.java From jpa-unit with Apache License 2.0 | 6 votes |
@Test @Ignore("oracle jdbc required in classpath") public void testCreateConnection() throws DatabaseUnitException, SQLException { // GIVEN final String schema = "foo"; // WHEN final IDatabaseConnection dbConnection = FACTORY.createConnection(connection, schema); // THEN assertThat(dbConnection, notNullValue()); final Object typeFactory = dbConnection.getConfig().getProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY); assertThat(typeFactory, notNullValue()); assertThat(typeFactory.getClass(), equalTo(Oracle10DataTypeFactory.class)); assertThat(dbConnection.getSchema(), equalTo(schema)); }
Example #4
Source File: Oracle10ConnectionFactory.java From jpa-unit with Apache License 2.0 | 5 votes |
@Override public IDatabaseConnection createConnection(final Connection connection, final String schema) throws DatabaseUnitException { final DatabaseConnection dbUnitConnection = new DatabaseConnection(connection, schema); dbUnitConnection.getConfig().setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new Oracle10DataTypeFactory()); return dbUnitConnection; }