Uses of Interface
java.sql.Ref

Packages that use Ref
Package Description
java.sql  
javax.sql  
SQLite.JDBC2z  
  • Uses of Ref in java.sql

    Methods in java.sql that return Ref
    Modifier and Type Method Description
    Ref CallableStatement.getRef​(int parameterIndex)
    Gets the value of a specified SQL REF(<structured type>) parameter as a java.sql.Ref.
    Ref CallableStatement.getRef​(String parameterName)
    Gets the value of a specified SQL REF(<structured type>) parameter as a java.sql.Ref.
    Ref ResultSet.getRef​(int columnIndex)
    Gets the value of a column specified by column index as a Java java.sql.Ref.
    Ref ResultSet.getRef​(String colName)
    Gets the value of a column specified by column name as a Java java.sql.Ref.
    Ref SQLInput.readRef()
    Returns the next attribute in the stream in the form of a java.sql.Ref.
    Methods in java.sql with parameters of type Ref
    Modifier and Type Method Description
    void PreparedStatement.setRef​(int parameterIndex, Ref theRef)
    Sets the value of a specified parameter to a supplied REF(<structured-type>) value.
    void ResultSet.updateRef​(int columnIndex, Ref x)
    Updates a column specified by a column index with a java.sql.Ref value.
    void ResultSet.updateRef​(String columnName, Ref x)
    Updates a column specified by a column name with a java.sql.Ref value.
    void SQLOutput.writeRef​(Ref theRef)
    Write an SQL Ref value into the output stream.
  • Uses of Ref in javax.sql

    Methods in javax.sql with parameters of type Ref
    Modifier and Type Method Description
    void RowSet.setRef​(int parameterIndex, Ref theRef)
    Sets the value of the specified parameter in the RowSet command to a supplied java.sql.Ref.
  • Uses of Ref in SQLite.JDBC2z

    Methods in SQLite.JDBC2z that return Ref
    Modifier and Type Method Description
    Ref JDBCPreparedStatement.getRef​(int parameterIndex)  
    Ref JDBCPreparedStatement.getRef​(String parameterName)  
    Ref JDBCResultSet.getRef​(int columnIndex)  
    Ref JDBCResultSet.getRef​(String columnName)  
    Methods in SQLite.JDBC2z with parameters of type Ref
    Modifier and Type Method Description
    void JDBCPreparedStatement.setRef​(int i, Ref x)  
    void JDBCResultSet.updateRef​(int colIndex, Ref x)  
    void JDBCResultSet.updateRef​(String colName, Ref x)