Searched refs:rows (Results 1 - 11 of 11) sorted by relevance

/dalvik/libcore/sql/src/main/java/SQLite/
H A DTableResult.java39 * Number of rows in the result set.
60 public Vector rows; field in class:TableResult
77 rows = new Vector();
104 rows.addElement(rowdata);
124 String row[] = (String[]) rows.elementAt(i);
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DTableResultX.java19 this.rows = tr.rows;
H A DJDBCResultSet.java57 throw new SQLException("no rows");
118 String rd[] = (String []) tr.rows.elementAt(row);
140 String rd[] = (String []) tr.rows.elementAt(row);
182 String rd[] = (String []) tr.rows.elementAt(row);
207 String rd[] = (String []) tr.rows.elementAt(row);
244 String rd[] = (String []) tr.rows.elementAt(row);
283 String rd[] = (String []) tr.rows.elementAt(row);
321 String rd[] = (String []) tr.rows.elementAt(row);
348 String rd[] = (String []) tr.rows.elementAt(row);
375 String rd[] = (String []) tr.rows
[all...]
H A DJDBCDatabaseMetaData.java634 String r0[] = (String [])(rs0.tr.rows.elementAt(i));
761 String r0[] = (String [])(rs0.tr.rows.elementAt(i));
788 String r2[] = (String [])(rs2.tr.rows.elementAt(k));
792 String r1[] = (String [])(rs1.tr.rows.elementAt(m));
875 String r0[] = (String [])(rs0.tr.rows.elementAt(i));
902 String r1[] = (String [])(rs1.tr.rows.elementAt(k));
934 String r0[] = (String [])(rs0.tr.rows.elementAt(i));
969 String r0[] = (String [])(in.tr.rows.elementAt(i));
1274 String r0[] = (String [])(rs0.tr.rows.elementAt(i));
1301 String r1[] = (String [])(rs1.tr.rows
[all...]
/dalvik/libcore/sql/src/test/java/tests/SQLite/
H A DFunctionContextTest.java80 String row[] = (String[]) res.rows.elementAt(0);
103 String row[] = (String[]) res.rows.elementAt(0);
126 String row[] = (String[]) res.rows.elementAt(0);
192 String row[] = (String[]) res.rows.elementAt(0);
239 String row[] = (String[]) res.rows.elementAt(0);
244 assertEquals(((String[]) res2.rows.elementAt(0))[0], val);
278 String row[] = (String[]) res.rows.elementAt(0);
H A DStmtTest.java291 String[] row0 = (String[]) count.rows.elementAt(0);
342 String[] row0 = (String[]) r.rows.elementAt(0);
345 String[] row1 = (String[]) r.rows.elementAt(1);
348 String[] row2 = (String[]) r.rows.elementAt(2);
395 String[] row0 = (String[]) r.rows.elementAt(0);
398 String[] row1 = (String[]) r.rows.elementAt(1);
401 String[] row2 = (String[]) r.rows.elementAt(2);
464 String[] row0 = (String[]) r.rows.elementAt(0);
467 String[] row1 = (String[]) r.rows.elementAt(1);
472 String[] row2 = (String[]) r.rows
[all...]
H A DDatabaseTest.java336 String row[] = (String[]) res.rows.elementAt(0);
358 String[] s = (String[]) res.rows.elementAt(0);
493 int rows = (int) db.changes();
790 String row[] = (String[]) res.rows.elementAt(0);
825 String[] s = (String[]) res.rows.elementAt(0);
905 String[] s = (String[]) res.rows.elementAt(0);
1012 String row[] = (String[]) res.rows.elementAt(0);
1132 String row[] = (String[]) res.rows.elementAt(0);
1146 row = (String[]) res.rows.elementAt(0);
1274 String[] encInput = (String[]) res.rows
[all...]
/dalvik/libcore/sql/src/main/java/java/sql/
H A DStatement.java22 * The resulting table rows are returned as {@code ResultSet}s. For any given
75 * but a count of the number of rows it affected is unavailable.
246 * count</i> (the number of rows in the database affected by the
249 * completed successfully but the number of rows affected is
281 * @return the count of updated rows, or 0 for a statement that returns
302 * @return the number of updated rows, or 0 if the statement returns
322 * @return the count of updated rows, or 0 for a statement that returns
342 * @return the count of updated rows, or 0 for a statement that returns
362 * Gets the default direction for fetching rows for {@code ResultSet}s
376 * Gets the default number of rows fo
611 setFetchSize(int rows) argument
[all...]
H A DResultSet.java33 * ahead of the first row. To move the cursor to the first and consecutive rows,
35 * long as there are more rows in the {@code ResultSet}, otherwise it returns
39 * only advance forward through the rows of data. This means that it is only
42 * be <i>scrolled</i> forward and backward through the rows of data. How such a
72 * either to modify the data of an existing row or to insert new data rows into
76 * method. For insertion of new rows, the cursor is first moved to a special row
111 * A constant used to indicate processing of the rows of a {@code ResultSet}
117 * A constant used to indicate processing of the rows of a {@code ResultSet}
123 * A constant used to indicate that the order of processing of the rows of a
231 * false} if the {@code ResultSet} contains no rows
1263 relative(int rows) argument
1326 setFetchSize(int rows) argument
[all...]
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java584 public boolean relative(int rows) throws SQLException { argument
603 public void setFetchSize(int rows) throws SQLException { argument
/dalvik/libcore/sql/src/test/java/tests/sql/
H A DStatementTest.java588 int rows = 100;
589 for (int i = 0; i < rows; i++) {
915 notes = "Test fails: dropping table hutch affects at least 2 rows.executeBatch() always returns same result: 1.",
1081 @KnownFailure("Spec is not precise enough: should be: number of rows affected."+
1128 // there are 0 rows created therefore 0 should be returned.
1140 // there are no rows in table: 0 should be returned
1148 // there are 3 rows in table: 3 should be returned

Completed in 81 milliseconds