(int i, int typ)
| 254 | } // end of SetUuidParm |
| 255 | |
| 256 | public int SetNullParm(int i, int typ) { |
| 257 | int rc = 0; |
| 258 | |
| 259 | try { |
| 260 | pstmt.setNull(i, typ); |
| 261 | } catch (Exception e) { |
| 262 | SetErrmsg(e); |
| 263 | rc = -1; |
| 264 | } // end try/catch |
| 265 | |
| 266 | return rc; |
| 267 | } // end of SetNullParm |
| 268 | |
| 269 | public int ExecutePrep() { |
| 270 | int n = -3; |