use of org.apache.ignite.internal.jdbc.thin.JdbcThinConnection in project ignite by apache.
the class IgniteJdbcThinDriver method connect.
/**
* {@inheritDoc}
*/
@Override
public Connection connect(String url, Properties props) throws SQLException {
if (!acceptsURL(url))
return null;
ConnectionPropertiesImpl connProps = new ConnectionPropertiesImpl();
connProps.init(url, props);
return new JdbcThinConnection(connProps);
}
Aggregations