(int i, int n)
| 182 | } // end of SetStringParm |
| 183 | |
| 184 | public void SetIntParm(int i, int n) { |
| 185 | try { |
| 186 | pstmt.setInt(i, n); |
| 187 | } catch (Exception e) { |
| 188 | SetErrmsg(e); |
| 189 | } // end try/catch |
| 190 | |
| 191 | } // end of SetIntParm |
| 192 | |
| 193 | public void SetShortParm(int i, short n) { |
| 194 | try { |