()
| 267 | } // end of SetNullParm |
| 268 | |
| 269 | public int ExecutePrep() { |
| 270 | int n = -3; |
| 271 | |
| 272 | if (pstmt != null) try { |
| 273 | n = pstmt.executeUpdate(); |
| 274 | } catch (SQLException se) { |
| 275 | SetErrmsg(se); |
| 276 | n = -1; |
| 277 | } catch (Exception e) { |
| 278 | SetErrmsg(e); |
| 279 | n = -2; |
| 280 | } //end try/catch |
| 281 | |
| 282 | return n; |
| 283 | } // end of ExecutePrep |
| 284 | |
| 285 | public boolean ClosePrepStmt() { |
| 286 | boolean b = false; |