//load configuration from properties file
props_ = load_properties(configFile_);
//set database type
DatabaseType dbType = null;
String dbTypeString = props_.getProperty("tcg.db.type", "");
if (0 == dbTypeString.compareToIgnoreCase("MYSQL"))
{
dbType = DatabaseType.MYSQL;
}