コード例 #1
0
 public Connection getConnectionObject() {
   return q.getConnection(this);
 }
コード例 #2
0
 public SafeConnection(
     DBQuerier querier, String Host, String Port, String DBName, String Username, String Password)
     throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException {
   this.q = querier;
   q.createConnection(this, Host, Port, DBName, Username, Password);
 }
コード例 #3
0
 public void destroy() {
   q.removeConnection(this);
 }