Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/sql/
DRef.java36 public interface Ref { interface
DSQLInput.java255 public Ref readRef() throws SQLException; in readRef()
DSQLOutput.java237 public void writeRef(Ref theRef) throws SQLException; in writeRef()
DResultSet.java829 public Ref getRef(int columnIndex) throws SQLException; in getRef()
841 public Ref getRef(String colName) throws SQLException; in getRef()
1811 public void updateRef(int columnIndex, Ref x) throws SQLException; in updateRef()
1824 public void updateRef(String columnName, Ref x) throws SQLException; in updateRef()
DCallableStatement.java531 public Ref getRef(int parameterIndex) throws SQLException; in getRef()
546 public Ref getRef(String parameterName) throws SQLException; in getRef()
DPreparedStatement.java541 public void setRef(int parameterIndex, Ref theRef) throws SQLException; in setRef()
/libcore/luni/src/main/java/javax/sql/
DRowSet.java29 import java.sql.Ref;
1468 public void setRef(int parameterIndex, Ref theRef) throws SQLException; in setRef()
/libcore/luni/src/test/java/libcore/java/sql/
DOldPreparedStatementTest.java31 import java.sql.Ref;
2197 Ref mock = new MockRef(); in testSetRef()
2263 private class MockRef implements Ref {