HomeSort by relevance Sort by last modified time
    Searched refs:ResultSet (Results 26 - 42 of 42) sorted by null

12

  /dalvik/libcore/sql/src/test/java/tests/java/sql/
QueryTimeoutTest.java 38 import java.sql.ResultSet;
57 * timeouts from calls to ResultSet.next(). Two connections are used, two
71 * ResultSet.next() may be interleaved between the different threads). Half of
208 * invocation of ResultSet.next() to read more than one row from the
258 private boolean fetchRow(ResultSet resultSet) throws SQLException {
260 boolean hasNext = resultSet.next();
270 ResultSet resultSet = null;
275 resultSet = statement.executeQuery()
    [all...]
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
StatsStore.java 26 import java.sql.ResultSet;
84 ResultSet row = selectStmt.executeQuery();
211 ResultSet res = stmt.executeQuery("SELECT id FROM Version");
279 // ResultSet res = stmt.executeQuery("PRAGMA CACHE_SIZE;");
  /dalvik/libcore/sql/src/main/java/java/sql/
PreparedStatement.java 70 * ResultSet}, {@code false} if there is no result or if the result
79 * {@code ResultSet} generated by the query.
81 * @return the {@code ResultSet} generated by the query, never {@code null}.
84 * produce a {@code ResultSet}.
86 public ResultSet executeQuery() throws SQLException;
97 * {@code ResultSet}.
103 * ResultSet} that would be produced by execution of the {@code PreparedStatement}.
105 * It is possible to know the metadata for the {@code ResultSet} without
111 * columns of the {@code ResultSet}, if the driver can return a
ResultSet.java 31 * {@code ResultSet}s have a cursor which points to the current data table row.
32 * When the {@code ResultSet} is created, the cursor's location is one position
35 * long as there are more rows in the {@code ResultSet}, otherwise it returns
38 * The default type of {@code ResultSet} can not be updated and its cursor can
40 * possible to read through it once. However, other kinds of {@code ResultSet}
43 * {@code ResultSet} is created is demonstrated in the following example:
48 * ResultSet.TYPE_SCROLL_SENSITIVE,}{@code ResultSet.CONCUR_UPDATABLE );}</dd>
49 * <dd>{@code ResultSet theResultSet =
53 * The {@code ResultSet} interface provides a series of methods for retrievin
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/sql/
ResultSetGetterTests.java 33 import java.sql.ResultSet;
52 @TestTargetClass(ResultSet.class)
57 ResultSet res = null;
61 // Judgement concerning support is based on the result of ResultSet.getOject
258 * Test method for {@link java.sql.ResultSet#getBytes(int)}.
293 * Test method for {@link java.sql.ResultSet#getBytes(int)}.
308 ResultSet res = null;
341 * Test method for {@link java.sql.ResultSet#getBytes(int)}.
356 ResultSet res = null;
388 * Test method for {@link java.sql.ResultSet#getBytes(String)}
    [all...]
ResultSetMetaDataTest.java 26 import java.sql.ResultSet;
37 ResultSet rs = null;
313 ResultSet rs1 = null;
ResultSetNotSupportedTests.java 25 import java.sql.ResultSet;
27 @TestTargetClass(ResultSet.class)
31 * Test method for {@link java.sql.ResultSet#getArray(int)}.
45 * Test method for {@link java.sql.ResultSet#getArray(java.lang.String)}.
60 * Test method for {@link java.sql.ResultSet#getAsciiStream(int)}.
74 * Test method for {@link java.sql.ResultSet#getAsciiStream(java.lang.String)}.
88 * Test method for {@link java.sql.ResultSet#getBigDecimal(int)}.
102 * Test method for {@link java.sql.ResultSet#getBigDecimal(int, int)}.
116 * Test method for {@link java.sql.ResultSet#getBigDecimal(java.lang.String)}.
130 * Test method for {@link java.sql.ResultSet#getBigDecimal(java.lang.String, int)}
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/SQLite/
DatabaseTest.java 37 import java.sql.ResultSet;
98 ResultSet userTab = meta.getTables(null, null, null, null);
423 ResultSet userTabs;
539 ResultSet userTabs;
663 ResultSet userTabs;
    [all...]
  /dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
JDBCPreparedStatement.java 114 public ResultSet executeQuery() throws SQLException {
JDBCResultSet.java 6 public class JDBCResultSet implements java.sql.ResultSet {
  /external/webkit/WebKitTools/Scripts/webkitpy/
BeautifulSoup.py 333 results = ResultSet(strainer)
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 360 milliseconds

12