use of org.adbcj.Connection in project adbcj by mheath.
the class Test method main.
public static void main(String[] args) throws DbException, Exception {
ConnectionManager cm = ConnectionManagerProvider.createConnectionManager("adbcj:mysqlnetty://localhost/test", "foo", "dawg");
Connection connection = cm.connect().get();
connection.close(true);
}
Aggregations