(int i, float f)
| 209 | } // end of SetBigintParm |
| 210 | |
| 211 | public void SetFloatParm(int i, float f) { |
| 212 | try { |
| 213 | pstmt.setFloat(i, f); |
| 214 | } catch (Exception e) { |
| 215 | SetErrmsg(e); |
| 216 | } // end try/catch |
| 217 | |
| 218 | } // end of SetFloatParm |
| 219 | |
| 220 | public void SetDoubleParm(int i, double d) { |
| 221 | try { |