()
| 44 | } |
| 45 | |
| 46 | public void init() throws ClassNotFoundException, SQLException { |
| 47 | Class.forName(JDBC_DRIVER); |
| 48 | this.connection = DriverManager.getConnection(DB_URL, USER, PASS); |
| 49 | this.statement = this.connection.createStatement(); |
| 50 | this.selfCheck(); |
| 51 | } |
| 52 | |
| 53 | public void selfCheck() { |
| 54 | boolean isExist; |