Home
last modified time | relevance | path

Searched refs:updateCounts (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/sql/
DBatchUpdateException.java45 private int[] updateCounts = null; field in BatchUpdateException
78 public BatchUpdateException(int[] updateCounts, Throwable cause) { in BatchUpdateException() argument
80 this.updateCounts = updateCounts; in BatchUpdateException()
92 public BatchUpdateException(String reason, int[] updateCounts, in BatchUpdateException() argument
95 this.updateCounts = updateCounts; in BatchUpdateException()
109 int[] updateCounts, Throwable cause) { in BatchUpdateException() argument
111 this.updateCounts = updateCounts; in BatchUpdateException()
125 int[] updateCounts, Throwable cause) { in BatchUpdateException() argument
127 this.updateCounts = updateCounts; in BatchUpdateException()
140 public BatchUpdateException(int[] updateCounts) { in BatchUpdateException() argument
[all …]
/libcore/luni/src/test/java/libcore/java/sql/
DOldStatementTest.java38 int[] updateCounts = st.executeBatch(); in testAddBatch() local
39 assertEquals(2, updateCounts.length); in testAddBatch()
40 assertEquals(1, updateCounts[0]); in testAddBatch()
41 assertEquals(1, updateCounts[1]); in testAddBatch()
173 int[] updateCounts = st.executeBatch(); in testClearBatch() local
175 for (int i = 0; i < updateCounts.length; i++) { in testClearBatch()
176 assertEquals(0, updateCounts[i]); in testClearBatch()