(int i, short n)
| 191 | } // end of SetIntParm |
| 192 | |
| 193 | public void SetShortParm(int i, short n) { |
| 194 | try { |
| 195 | pstmt.setShort(i, n); |
| 196 | } catch (Exception e) { |
| 197 | SetErrmsg(e); |
| 198 | } // end try/catch |
| 199 | |
| 200 | } // end of SetShortParm |
| 201 | |
| 202 | public void SetBigintParm(int i, long n) { |
| 203 | try { |