Home | History | Annotate | Download | only in JDBC2z

Lines Matching refs:row

9      * Current row to be retrieved.
11 private int row;
62 * Flag for cursor being (not) on insert row.
67 * Row buffer for insert/update row.
79 this.row = -1;
134 if (row < 0) {
138 System.arraycopy((String []) tr.rows.elementAt(row), 0,
147 row++;
148 return row < tr.nrows;
160 return row + 1;
167 if (row >= 0) {
168 row--;
170 return row >= 0;
173 public boolean absolute(int row) throws SQLException {
177 if (row < 0) {
178 row = tr.nrows + 1 + row;
180 row--;
181 if (row < 0 || row > tr.nrows) {
184 this.row = row;
188 public boolean relative(int row) throws SQLException {
192 if (this.row + row < 0 || this.row + row >= tr.nrows) {
195 this.row += row;
223 String rd[] = (String []) tr.rows.elementAt(row);
245 String rd[] = (String []) tr.rows.elementAt(row);
289 String rd[] = (String []) tr.rows.elementAt(row);
314 String rd[] = (String []) tr.rows.elementAt(row);
363 String rd[] = (String []) tr.rows.elementAt(row);
414 String rd[] = (String []) tr.rows.elementAt(row);
464 String rd[] = (String []) tr.rows.elementAt(row);
491 String rd[] = (String []) tr.rows.elementAt(row);
518 String rd[] = (String []) tr.rows.elementAt(row);
612 String rd[] = (String []) tr.rows.elementAt(row);
633 row);
755 return row == 0;
762 return row < 0;
769 row = -1;
776 row = 0;
784 return row >= tr.nrows;
791 row = tr.nrows;
798 return row == tr.nrows - 1;
805 row = tr.nrows -1;
870 throw new SQLException("cursor on insert row");
875 String rd[] = (String []) tr.rows.elementAt(row);
912 throw new SQLException("cursor on insert row");
942 throw new SQLException("cursor on insert row");
948 String rd[] = (String []) tr.rows.elementAt(row);
979 tr.rows.setElementAt(trnew.rows.elementAt(0), row);
1262 row = -1;
1269 String rd[] = (String []) tr.rows.elementAt(row);