Lines Matching refs:param

122      * @param caller a <code>RowSet</code> object that has implemented
296 * @param caller a <code>RowSet</code> object that has implemented
359 * @param params an array of parameters to be used with the given
361 * @param pstmt the <code>PreparedStatement</code> object that is the
376 Object[] param = null;
380 param = (Object[])params[i];
382 if (param.length == 2) {
383 if (param[0] == null) {
384 pstmt.setNull(i + 1, ((Integer)param[1]).intValue());
388 if (param[0] instanceof java.sql.Date ||
389 param[0] instanceof java.sql.Time ||
390 param[0] instanceof java.sql.Timestamp) {
392 if (param[1] instanceof java.util.Calendar) {
394 pstmt.setDate(i + 1, (java.sql.Date)param[0],
395 (java.util.Calendar)param[1]);
403 if (param[0] instanceof Reader) {
404 pstmt.setCharacterStream(i + 1, (Reader)param[0],
405 ((Integer)param[1]).intValue());
412 if (param[1] instanceof Integer) {
413 pstmt.setObject(i + 1, param[0], ((Integer)param[1]).intValue());
417 } else if (param.length == 3) {
419 if (param[0] == null) {
420 pstmt.setNull(i + 1, ((Integer)param[1]).intValue(),
421 (String)param[2]);
425 if (param[0] instanceof java.io.InputStream) {
426 switch (((Integer)param[2]).intValue()) {
429 (java.io.InputStream)param[0],
430 ((Integer)param[1]).intValue());
433 (java.io.InputStream)param[0],
434 ((Integer)param[1]).intValue());
437 (java.io.InputStream)param[0],
438 ((Integer)param[1]).intValue());
448 if (param[1] instanceof Integer && param[2] instanceof Integer) {
449 pstmt.setObject(i + 1, param[0], ((Integer)param[1]).intValue(),
450 ((Integer)param[2]).intValue());
486 * @param pos integer indicating the position in the <code>ResultSet</code> to begin