Uses of Interface
java.sql.RowId

Packages that useRowId
Package
Description
java.sql
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java programming language.
javax.sql
Provides the API for server side data source access and processing from the Java programming language.
javax.sql.rowset
Standard interfaces and base classes for JDBCRowSet implementations.
javax.sql.rowset.serial
Provides utility classes to allow serializable mappings between SQL types and data types in the Java programming language.
  • Uses ofRowId injava.sql

    Methods injava.sql that returnRowId
    Modifier and Type
    Method
    Description
    CallableStatement.getRowId(int parameterIndex)
    Retrieves the value of the designated JDBCROWID parameter as ajava.sql.RowId object.
    CallableStatement.getRowId(String parameterName)
    Retrieves the value of the designated JDBCROWID parameter as ajava.sql.RowId object.
    ResultSet.getRowId(int columnIndex)
    Retrieves the value of the designated column in the current row of thisResultSet object as ajava.sql.RowId object in the Java programming language.
    ResultSet.getRowId(String columnLabel)
    Retrieves the value of the designated column in the current row of thisResultSet object as ajava.sql.RowId object in the Java programming language.
    SQLInput.readRowId()
    Reads an SQLROWID value from the stream and returns it as aRowId object in the Java programming language.
    Methods injava.sql with parameters of typeRowId
    Modifier and Type
    Method
    Description
    void
    CallableStatement.setRowId(String parameterName,RowId x)
    Sets the designated parameter to the givenjava.sql.RowId object.
    void
    PreparedStatement.setRowId(int parameterIndex,RowId x)
    Sets the designated parameter to the givenjava.sql.RowId object.
    void
    ResultSet.updateRowId(int columnIndex,RowId x)
    Updates the designated column with aRowId value.
    void
    ResultSet.updateRowId(String columnLabel,RowId x)
    Updates the designated column with aRowId value.
    void
    SQLOutput.writeRowId(RowId x)
    Writes an SQLROWID value to the stream.
  • Uses ofRowId injavax.sql

    Methods injavax.sql with parameters of typeRowId
    Modifier and Type
    Method
    Description
    void
    RowSet.setRowId(int parameterIndex,RowId x)
    Sets the designated parameter to the givenjava.sql.RowId object.
    void
    RowSet.setRowId(String parameterName,RowId x)
    Sets the designated parameter to the givenjava.sql.RowId object.
  • Uses ofRowId injavax.sql.rowset

    Methods injavax.sql.rowset with parameters of typeRowId
    Modifier and Type
    Method
    Description
    void
    BaseRowSet.setRowId(int parameterIndex,RowId x)
    Sets the designated parameter to the givenjava.sql.RowId object.
    void
    BaseRowSet.setRowId(String parameterName,RowId x)
    Sets the designated parameter to the givenjava.sql.RowId object.
  • Uses ofRowId injavax.sql.rowset.serial

    Methods injavax.sql.rowset.serial that returnRowId
    Modifier and Type
    Method
    Description
    SQLInputImpl.readRowId()
    Reads an SQLROWID value from the stream and returns it as aRowId object in the Java programming language.
    Methods injavax.sql.rowset.serial with parameters of typeRowId
    Modifier and Type
    Method
    Description
    void
    SQLOutputImpl.writeRowId(RowId x)
    Writes an SQLROWID value to the stream.