(int i, long n)
| 200 | } // end of SetShortParm |
| 201 | |
| 202 | public void SetBigintParm(int i, long n) { |
| 203 | try { |
| 204 | pstmt.setLong(i, n); |
| 205 | } catch (Exception e) { |
| 206 | SetErrmsg(e); |
| 207 | } // end try/catch |
| 208 | |
| 209 | } // end of SetBigintParm |
| 210 | |
| 211 | public void SetFloatParm(int i, float f) { |
| 212 | try { |