use of org.apache.ddlutils.Platform in project siena by mandubian.
the class H2TestNoAutoInc_4_SPECIALS method createPersistenceManager.
@Override
public PersistenceManager createPersistenceManager(List<Class<?>> classes) throws Exception {
if (pm == null) {
Properties p = new Properties();
String driver = "org.h2.Driver";
String url = "jdbc:h2:mem:test;DB_CLOSE_DELAY=-1";
String username = "sa";
String password = "";
p.setProperty("driver", driver);
p.setProperty("url", url);
p.setProperty("user", username);
p.setProperty("password", password);
DdlGenerator generator = new DdlGenerator();
for (Class<?> clazz : classes) {
generator.addTable(clazz);
}
// get the Database model
Database database = generator.getDatabase();
Platform platform = PlatformFactory.createNewPlatformInstance("mysql");
Class.forName(driver);
//JdbcDataSource ds = new JdbcDataSource();
//ds.setURL(url);
//Connection connection = ds.getConnection();
Connection connection = DriverManager.getConnection(url, username, password);
System.out.println(platform.getAlterTablesSql(connection, database));
// this will perform the database changes
platform.alterTables(connection, database, true);
connection.close();
pm = new H2PersistenceManager();
pm.init(p);
}
return pm;
}
use of org.apache.ddlutils.Platform in project siena by mandubian.
the class JdbcMultiThreadTest method createPersistenceManager.
@Override
public PersistenceManager createPersistenceManager(List<Class<?>> classes) throws Exception {
if (pm == null) {
Properties p = new Properties();
String driver = "com.mysql.jdbc.Driver";
String username = "siena";
String password = "siena";
String url = "jdbc:mysql://localhost/siena";
p.setProperty("driver", driver);
p.setProperty("user", username);
p.setProperty("password", password);
p.setProperty("url", url);
Class.forName(driver);
BasicDataSource dataSource = new BasicDataSource();
dataSource = new BasicDataSource();
dataSource.setUrl(url);
dataSource.setUsername(username);
dataSource.setPassword(password);
// 2 seconds max for wait a connection.
dataSource.setMaxWait(2000);
DdlGenerator generator = new DdlGenerator();
for (Class<?> clazz : classes) {
generator.addTable(clazz);
}
// get the Database model
Database database = generator.getDatabase();
Platform platform = PlatformFactory.createNewPlatformInstance("mysql");
Class.forName("com.mysql.jdbc.Driver");
Connection connection = DriverManager.getConnection(url, username, password);
System.out.println(platform.getAlterTablesSql(connection, database));
// this will perform the database changes
platform.alterTables(connection, database, true);
connection.close();
pm = new JdbcPersistenceManager();
pm.init(p);
}
return pm;
}
use of org.apache.ddlutils.Platform in project siena by mandubian.
the class DrizzleTest method createPersistenceManager.
@Override
public PersistenceManager createPersistenceManager(List<Class<?>> classes) throws Exception {
if (pm == null) {
Properties p = new Properties();
String driver = "org.drizzle.jdbc.DrizzleDriver";
//String username = "root";
//String password = "";
String url = "jdbc:mysql://localhost:4427/siena";
p.setProperty("driver", driver);
//p.setProperty("user", username);
//p.setProperty("password", password);
p.setProperty("url", url);
Class.forName(driver);
BasicDataSource dataSource = new BasicDataSource();
dataSource = new BasicDataSource();
dataSource.setUrl(url);
//dataSource.setUsername(username);
//dataSource.setPassword(password);
// 2 seconds max for wait a connection.
dataSource.setMaxWait(2000);
DdlGenerator generator = new DdlGenerator();
for (Class<?> clazz : classes) {
generator.addTable(clazz);
}
// get the Database model
Database database = generator.getDatabase();
Platform platform = PlatformFactory.createNewPlatformInstance(dataSource);
Class.forName("org.drizzle.jdbc.DrizzleDriver");
Connection connection = DriverManager.getConnection(url);
System.out.println(platform.getAlterTablesSql(connection, database));
// this will perform the database changes
platform.alterTables(connection, database, true);
connection.close();
pm = new JdbcPersistenceManager();
pm.init(p);
}
return pm;
}
use of org.apache.ddlutils.Platform in project siena by mandubian.
the class PostgresMultiThreadTest method createPersistenceManager.
@Override
public PersistenceManager createPersistenceManager(List<Class<?>> classes) throws Exception {
if (pm == null) {
Properties p = new Properties();
String driver = "org.postgresql.Driver";
String username = "siena";
String password = "siena";
String url = "jdbc:postgresql://localhost/siena";
p.setProperty("driver", driver);
p.setProperty("user", username);
p.setProperty("password", password);
p.setProperty("url", url);
Class.forName(driver);
BasicDataSource dataSource = new BasicDataSource();
dataSource = new BasicDataSource();
dataSource.setUrl(url);
dataSource.setUsername(username);
dataSource.setPassword(password);
// 2 seconds max for wait a connection.
dataSource.setMaxWait(2000);
DdlGenerator generator = new DdlGenerator();
for (Class<?> clazz : classes) {
generator.addTable(clazz);
}
// get the Database model
Database database = generator.getDatabase();
Platform platform = PlatformFactory.createNewPlatformInstance("postgresql");
Class.forName(driver);
Connection connection = DriverManager.getConnection(url, username, password);
System.out.println(platform.getAlterTablesSql(connection, database));
// this will perform the database changes
platform.alterTables(connection, database, true);
connection.close();
pm = new PostgresqlPersistenceManager();
pm.init(p);
}
return pm;
}
use of org.apache.ddlutils.Platform in project siena by mandubian.
the class PostgresTestNoAutoInc_4_SPECIALS method createPersistenceManager.
@Override
public PersistenceManager createPersistenceManager(List<Class<?>> classes) throws Exception {
if (pm == null) {
Properties p = new Properties();
String driver = "org.postgresql.Driver";
String username = "siena";
String password = "siena";
String url = "jdbc:postgresql://localhost/siena";
p.setProperty("driver", driver);
p.setProperty("user", username);
p.setProperty("password", password);
p.setProperty("url", url);
Class.forName(driver);
BasicDataSource dataSource = new BasicDataSource();
dataSource = new BasicDataSource();
dataSource.setUrl(url);
dataSource.setUsername(username);
dataSource.setPassword(password);
// 2 seconds max for wait a connection.
dataSource.setMaxWait(2000);
DdlGenerator generator = new DdlGenerator();
for (Class<?> clazz : classes) {
generator.addTable(clazz);
}
// get the Database model
Database database = generator.getDatabase();
Platform platform = PlatformFactory.createNewPlatformInstance("postgresql");
Class.forName(driver);
Connection connection = DriverManager.getConnection(url, username, password);
System.out.println(platform.getAlterTablesSql(connection, database));
// this will perform the database changes
platform.alterTables(connection, database, true);
connection.close();
pm = new PostgresqlPersistenceManager();
pm.init(p);
}
return pm;
}
Aggregations