Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/sql/
DOldResultSetGetterTests.java264 PreparedStatement stPrep = null; in testGetBytesIntVarbinary() local
272 stPrep = conn in testGetBytesIntVarbinary()
274 stPrep.setBytes(1, testString.getBytes()); in testGetBytesIntVarbinary()
275 stPrep.execute(); in testGetBytesIntVarbinary()
286 if (stPrep != null) stPrep.close(); in testGetBytesIntVarbinary()
296 PreparedStatement stPrep = null; in testGetBytesIntBinary() local
305 stPrep = conn.prepareStatement("insert into testBinary values (?);"); in testGetBytesIntBinary()
306 stPrep.setBytes(1, testString.getBytes()); in testGetBytesIntBinary()
307 stPrep.execute(); in testGetBytesIntBinary()
318 if (stPrep != null) stPrep.close(); in testGetBytesIntBinary()
[all …]