コード例 #1
0
ファイル: Database.java プロジェクト: Laukien/Bean-Database
 /** Closes the current <code>Result</code> an its database connection */
 public void close() {
   closeResult();
   closeStatement();
   closeConnection();
 }
コード例 #2
0
ファイル: Database.java プロジェクト: Laukien/Bean-Database
 /** Closes the current database connection */
 public void closeConnection() {
   closeConnection(gConnection);
 }