Searched refs:addBatch (Results 1 – 6 of 6) sorted by relevance
/libcore/luni/src/test/java/libcore/java/sql/ |
D | OldStatementTest.java | 35 st.addBatch("INSERT INTO zoo VALUES (3,'Tuzik','dog')"); in testAddBatch() 36 st.addBatch("INSERT INTO zoo VALUES (4,'Mashka','cat')"); in testAddBatch() 51 st.addBatch(""); in testAddBatch() 65 st.addBatch(null); in testAddBatch() 168 st.addBatch("INSERT INTO zoo VALUES (3,'Tuzik','dog'); "); in testClearBatch() 169 st.addBatch("INSERT INTO zoo VALUES (4,'Mashka','cat')"); in testClearBatch() 187 st.addBatch(""); in testClearBatch() 201 st.addBatch(null); in testClearBatch() 662 st.addBatch(wrongQueries[i]); in testExecuteBatch() 679 st.addBatch(queries[i]); in testExecuteBatch() [all …]
|
D | OldResultSetTest.java | 132 s.addBatch("create table t1 (a text);"); in testClose() 134 s.addBatch("insert into t1 values('abc');"); in testClose() 135 s.addBatch("insert into t1 values('def');"); in testClose() 136 s.addBatch("insert into t1 values('ghi');"); in testClose()
|
D | OldPreparedStatementTest.java | 117 ps.addBatch("INSERT INTO zoo VALUES (?,'Burenka', ?); "); in testAddBatch() 118 ps.addBatch("INSERT INTO zoo VALUES (?,'Mashka','cat')"); in testAddBatch() 150 ps.addBatch(""); in testAddBatch() 163 ps.addBatch(null); in testAddBatch()
|
/libcore/ojluni/src/main/java/java/sql/ |
D | Statement.java | 513 void addBatch( String sql ) throws SQLException; in addBatch() method
|
D | PreparedStatement.java | 500 void addBatch() throws SQLException; in addBatch() method
|
/libcore/api/ |
D | current.txt | 9360 method public void addBatch() throws java.sql.SQLException; 9929 method public void addBatch(String) throws java.sql.SQLException;
|