HomeSort by relevance Sort by last modified time
    Searched full:preparestatement (Results 1 - 25 of 25) sorted by null

  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 116 .prepareStatement("INSERT INTO zoo VALUES (3,'Tuzik', ?);");
149 .prepareStatement("INSERT INTO zoo VALUES (3,'Tuzik', ?);");
162 .prepareStatement("INSERT INTO zoo VALUES (3,'Tuzik', ?);");
182 ps = conn.prepareStatement(query);
189 ps = conn.prepareStatement("select * from zoo");
201 ps = conn.prepareStatement(query);
222 ps = conn.prepareStatement(query);
234 ps = conn.prepareStatement(query);
246 ps = conn.prepareStatement(query);
257 ps = conn.prepareStatement(query)
    [all...]
OldConnectionTest.java     [all...]
OldResultSetTest.java 141 ps1 = conn.prepareStatement("select * from t1");
142 ps2 = conn.prepareStatement("select * from t1 whe a like '?000'");
OldResultSetGetterTests.java 273 .prepareStatement("insert into testBinary values (?);");
305 stPrep = conn.prepareStatement("insert into testBinary values (?);");
355 .prepareStatement("insert into testBinary values (?);");
387 stPrep = conn.prepareStatement("insert into testBinary values (?);");
    [all...]
OldStatementTest.java     [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 123 public PreparedStatement prepareStatement(String sql, int resultSetType,
129 public PreparedStatement prepareStatement(String sql, int resultSetType,
134 public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys)
139 public PreparedStatement prepareStatement(String sql, int[] columnIndexes)
144 public PreparedStatement prepareStatement(String sql, String[] columnNames)
149 public PreparedStatement prepareStatement(String sql) throws SQLException {
  /libcore/luni/src/test/java/libcore/sqlite/
QueryTimeoutTest.java 95 PreparedStatement statement = connection.prepareStatement(FETCH_QUERY);
113 PreparedStatement statement = connection.prepareStatement(EXEC_QUERY);
126 PreparedStatement statement = connection.prepareStatement("select 'hello'");
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 285 public PreparedStatement prepareStatement(String sql) throws SQLException {
290 public PreparedStatement prepareStatement(String sql, int resultSetType,
431 public PreparedStatement prepareStatement(String sql, int resultSetType,
438 return prepareStatement(sql, resultSetType, resultSetConcurrency);
446 public PreparedStatement prepareStatement(String sql, int autokeys)
451 return prepareStatement(sql);
454 public PreparedStatement prepareStatement(String sql, int colIndexes[])
459 public PreparedStatement prepareStatement(String sql, String columns[])
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
SQL_Results.java 72 this.queryAllComments = this.fConnection.prepareStatement("select ID, KIND, TEXT from COMMENT"); //$NON-NLS-1$
87 this.queryAllVariations = this.fConnection.prepareStatement("select KEYVALPAIRS from VARIATION where KEYVALPAIRS like ? order by KEYVALPAIRS"); //$NON-NLS-1$
107 this.queryBuildAllScenarios = this.fConnection.prepareStatement(statement);
128 this.queryBuildScenarios = this.fConnection.prepareStatement(statement);
158 this.queryDimScalars = this.fConnection.prepareStatement(buffer.toString());
183 this.queryScenarioTimestampDataPoints = this.fConnection.prepareStatement(statement);
200 this.queryScenarioBuildDataPoints = this.fConnection.prepareStatement(statement);
226 this.queryScenarioDataPoints = this.fConnection.prepareStatement(statement);
277 this.queryScenarioSummaries= this.fConnection.prepareStatement("select KEYVALPAIRS , IS_GLOBAL, COMMENT_ID, DIM_ID from VARIATION, SUMMARYENTRY where " + //$NON-NLS-1$
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 94 PreparedStatement insert = connection.prepareStatement(sqlInsertString.sql, Statement.RETURN_GENERATED_KEYS);
158 PreparedStatement statement = connection.prepareStatement(sqlUpdateString.sql);
176 return connection.prepareStatement(sql).executeUpdate();
ShadowSQLiteProgram.java 26 actualDBstatement = connection.prepareStatement(sql,
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteCursorTest.java 214 PreparedStatement statement = connection.prepareStatement(sql);
234 PreparedStatement statement = connection.prepareStatement(sql);
  /libcore/luni/src/main/java/java/sql/
Connection.java 434 public PreparedStatement prepareStatement(String sql) throws SQLException;
471 public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys)
501 public PreparedStatement prepareStatement(String sql, int[] columnIndexes)
532 public PreparedStatement prepareStatement(String sql, int resultSetType,
569 public PreparedStatement prepareStatement(String sql, int resultSetType,
601 public PreparedStatement prepareStatement(String sql, String[] columnNames)
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
DeleteFunctionalityTest.java 188 PreparedStatement stat = conn.prepareStatement("DELETE FROM "
InsertFunctionalityTest.java 208 PreparedStatement stat = conn.prepareStatement("INSERT INTO "
StressTest.java 320 PreparedStatement ps = c.prepareStatement(query);
UpdateFunctionalityTest2.java 266 PreparedStatement stat = conn.prepareStatement("UPDATE "
SelectFunctionalityTest.java 180 PreparedStatement prepStatement = conn.prepareStatement(sql);
  /cts/tools/dex-tools/dex/
classes0.out.dex 941 public abstract java.sql.PreparedStatement prepareStatement(
944 public abstract java.sql.PreparedStatement prepareStatement(
948 public abstract java.sql.PreparedStatement prepareStatement(
953 public abstract java.sql.PreparedStatement prepareStatement(
959 public abstract java.sql.PreparedStatement prepareStatement(
963 public abstract java.sql.PreparedStatement prepareStatement(
1101 public java.sql.PreparedStatement prepareStatement(
1104 public java.sql.PreparedStatement prepareStatement(
1108 public java.sql.PreparedStatement prepareStatement(
1113 public java.sql.PreparedStatement prepareStatement(
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 
h2-1.2.147.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 

Completed in 2464 milliseconds