Uses of Interface
java.sql.RowId

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

    Methods in java.sql that return RowId
    Modifier and Type Method Description
    RowId CallableStatement.getRowId​(int parameterIndex)
    Gets the value of a specified ROWID parameter as a java.sql.RowId.
    RowId CallableStatement.getRowId​(String parameterName)
    Returns the value of the specified SQL ROWID parameter as a java.sql.RowId.
    RowId ResultSet.getRowId​(int columnIndex)
    Returns a RowId corresponding to the SQL ROWID at the 1-based columnIndex.
    RowId ResultSet.getRowId​(String columnLabel)
    Returns a RowId corresponding to the SQL ROWID at the named column.
    RowId SQLInput.readRowId()
    Returns the next attribute in the stream in the form of a java.sql.RowId.
    Methods in java.sql with parameters of type RowId
    Modifier and Type Method Description
    void CallableStatement.setRowId​(String parameterName, RowId rowId)
    Sets the named parameter to the given rowId.
    void PreparedStatement.setRowId​(int parameterIndex, RowId theRowId)
    Sets the value of a specified parameter to a supplied java.sql.RowId.
    void ResultSet.updateRowId​(int columnIndex, RowId value)
    Updates the value at the 1-based columnIndex.
    void ResultSet.updateRowId​(String columnLabel, RowId value)
    Updates the value in the named column.
    void SQLOutput.writeRowId​(RowId theRowId)
    Write a RowId into the output stream as an SQL ROWID.
  • Uses of RowId in javax.sql

    Methods in javax.sql with parameters of type RowId
    Modifier and Type Method Description
    void RowSet.setRowId​(int parameterIndex, RowId theRowId)
    Sets the value of the specified parameter in the RowSet command to the supplied RowId
    void RowSet.setRowId​(String parameterName, RowId theRowId)
    Sets the value of the specified parameter in the RowSet command to the supplied RowId.
  • Uses of RowId in SQLite.JDBC2z

    Methods in SQLite.JDBC2z that return RowId
    Modifier and Type Method Description
    RowId JDBCResultSet.getRowId​(int colIndex)  
    RowId JDBCResultSet.getRowId​(String colName)  
    Methods in SQLite.JDBC2z with parameters of type RowId
    Modifier and Type Method Description
    void JDBCPreparedStatement.setRowId​(int parameterIndex, RowId x)  
    void JDBCPreparedStatement.setRowId​(String parameterName, RowId x)  
    void JDBCResultSet.updateRowId​(int colIndex, RowId x)  
    void JDBCResultSet.updateRowId​(String colName, RowId x)