public TeiidDriver() {
// this is not singleton, if you want singleton make this private.
}
public Connection connect(String url, Properties info) throws SQLException {
ConnectionType conn = JDBCURL.acceptsUrl(url);
if (conn == null) {
return null;
}
if(info == null) {
// create a properties obj if it is null