(int i, double d)
| 218 | } // end of SetFloatParm |
| 219 | |
| 220 | public void SetDoubleParm(int i, double d) { |
| 221 | try { |
| 222 | pstmt.setDouble(i, d); |
| 223 | } catch (Exception e) { |
| 224 | SetErrmsg(e); |
| 225 | } // end try/catch |
| 226 | |
| 227 | } // end of SetDoubleParm |
| 228 | |
| 229 | public void SetTimestampParm(int i, Timestamp t) { |
| 230 | try { |