34353637383940414243
this.dataSource = dataSource; } public DBConnection getConnection() throws DBException { try { return new JDBCConnection(this.dataSource.getConnection()); } catch (Exception e) { throw new DBException(e); } }
4647484950515253545556
} } public DBConnection getConnection() throws DBException { try { return new JDBCConnection(DriverManager.getConnection(this.connection, this.user, this.password)); } catch (Exception e) { e.printStackTrace(); throw new DBException(e); } }