}
if (System.getProperty("db.password", null) == null) {
System.setProperty("db.password", "");
}
I_Info info = new PropertiesInfo(System.getProperties());
boolean forceCreationAndInit = true;
I_DbSpecific specific = ReplicationConverter.getDbSpecific(info, forceCreationAndInit);
pool = (I_DbPool) info.getObject("db.pool");
conn = pool.reserve();
conn.setAutoCommit(true);
String schema = info.get("wipeout.schema", null);
String version = info.get("replication.version", "0.0");
if (schema == null) {
String initialUpdateFile = info.get("initialUpdate.file", null);
if (initialUpdateFile != null) {
specific.initialCommand(null, initialUpdateFile, version);
}
else
specific.cleanup(conn, true);