Searched refs:prepareStatement (Results 1 – 6 of 6) sorted by relevance
/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/ |
D | SQL_Results.java | 72 …this.queryAllComments = this.fConnection.prepareStatement("select ID, KIND, TEXT from COMMENT"); /… in queryAllComments() 87 …this.queryAllVariations = this.fConnection.prepareStatement("select KEYVALPAIRS from VARIATION whe… in queryAllVariations() 107 this.queryBuildAllScenarios = this.fConnection.prepareStatement(statement); in queryBuildAllScenarios() 128 this.queryBuildScenarios = this.fConnection.prepareStatement(statement); in queryBuildScenarios() 158 this.queryDimScalars = this.fConnection.prepareStatement(buffer.toString()); in queryDimScalars() 183 this.queryScenarioTimestampDataPoints = this.fConnection.prepareStatement(statement); in queryScenarioTimestampDataPoints() 200 this.queryScenarioBuildDataPoints = this.fConnection.prepareStatement(statement); in queryScenarioBuildDataPoints() 226 this.queryScenarioDataPoints = this.fConnection.prepareStatement(statement); in queryScenarioDataPoints() 277 …this.queryScenarioSummaries= this.fConnection.prepareStatement("select KEYVALPAIRS , IS_GLOBAL, CO… in queryScenarioSummaries()
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
D | TestHelper_Connection1.java | 123 public PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() method in TestHelper_Connection1 129 public PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() method in TestHelper_Connection1 134 public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) in prepareStatement() method in TestHelper_Connection1 139 public PreparedStatement prepareStatement(String sql, int[] columnIndexes) in prepareStatement() method in TestHelper_Connection1 144 public PreparedStatement prepareStatement(String sql, String[] columnNames) in prepareStatement() method in TestHelper_Connection1 149 public PreparedStatement prepareStatement(String sql) throws SQLException { in prepareStatement() method in TestHelper_Connection1
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCConnection.java | 285 public PreparedStatement prepareStatement(String sql) throws SQLException { in prepareStatement() method in JDBCConnection 290 public PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() method in JDBCConnection 431 public PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() method in JDBCConnection 438 return prepareStatement(sql, resultSetType, resultSetConcurrency); in prepareStatement() 446 public PreparedStatement prepareStatement(String sql, int autokeys) in prepareStatement() method in JDBCConnection 451 return prepareStatement(sql); in prepareStatement() 454 public PreparedStatement prepareStatement(String sql, int colIndexes[]) in prepareStatement() method in JDBCConnection 459 public PreparedStatement prepareStatement(String sql, String columns[]) in prepareStatement() method in JDBCConnection
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowSQLiteDatabase.java | 94 …PreparedStatement insert = connection.prepareStatement(sqlInsertString.sql, Statement.RETURN_GENER… in insertWithOnConflict() 158 PreparedStatement statement = connection.prepareStatement(sqlUpdateString.sql); in update() 176 return connection.prepareStatement(sql).executeUpdate(); in delete()
|
D | ShadowSQLiteProgram.java | 26 actualDBstatement = connection.prepareStatement(sql, in init()
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | SQLiteCursorTest.java | 214 PreparedStatement statement = connection.prepareStatement(sql); in testGetBlob() 234 PreparedStatement statement = connection.prepareStatement(sql); in testGetClob()
|