Properties properties = new Properties();
properties.load(new FileInputStream(CONFIG_FILE));
Driver driver = (Driver) Class.forName(properties.getProperty("driver")).newInstance();
String url = properties.getProperty("url");
return driver.connect(url, properties);
}
/**
* Execute the given sql script.