()
| 283 | } // end of ExecutePrep |
| 284 | |
| 285 | public boolean ClosePrepStmt() { |
| 286 | boolean b = false; |
| 287 | |
| 288 | if (pstmt != null) try { |
| 289 | pstmt.close(); |
| 290 | pstmt = null; |
| 291 | } catch (SQLException se) { |
| 292 | SetErrmsg(se); |
| 293 | b = true; |
| 294 | } catch (Exception e) { |
| 295 | SetErrmsg(e); |
| 296 | b = true; |
| 297 | } // end try/catch |
| 298 | |
| 299 | return b; |
| 300 | } // end of ClosePrepStmt |
| 301 | |
| 302 | public int JdbcDisconnect() { |
| 303 | int rc = 0; |
no test coverage detected