(int i, String s)
| 173 | } // end of CreatePrepStmt |
| 174 | |
| 175 | public void SetStringParm(int i, String s) { |
| 176 | try { |
| 177 | pstmt.setString(i, s); |
| 178 | } catch (Exception e) { |
| 179 | SetErrmsg(e); |
| 180 | } // end try/catch |
| 181 | |
| 182 | } // end of SetStringParm |
| 183 | |
| 184 | public void SetIntParm(int i, int n) { |
| 185 | try { |