Uses of Interface
java.sql.SQLXML

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

    Methods in java.sql that return SQLXML
    Modifier and Type Method Description
    SQLXML Connection.createSQLXML()
    Returns a new empty SQLXML.
    SQLXML CallableStatement.getSQLXML​(int parameterIndex)
    Returns the value of the specified SQL XML parameter as a java.sql.SQLXML.
    SQLXML CallableStatement.getSQLXML​(String parameterName)
    Returns the value of the specified SQL XML parameter as a java.sql.SQLXML.
    SQLXML ResultSet.getSQLXML​(int columnIndex)
    Returns an SQLXML corresponding to the value at the 1-based columnIndex.
    SQLXML ResultSet.getSQLXML​(String columnLabel)
    Returns an SQLXML corresponding to the value in the named column.
    SQLXML SQLInput.readSQLXML()
    Returns the next attribute in the stream in the form of a java.sql.SQLXML.
    Methods in java.sql with parameters of type SQLXML
    Modifier and Type Method Description
    void CallableStatement.setSQLXML​(String parameterName, SQLXML sqlXml)
    Sets the named parameter to the given sqlXml.
    void PreparedStatement.setSQLXML​(int parameterIndex, SQLXML xmlObject)
    Sets the value of the specified parameter to the value of xmlObject.
    void ResultSet.updateSQLXML​(int columnIndex, SQLXML xmlObject)
    Updates the value at the 1-based columnIndex.
    void ResultSet.updateSQLXML​(String columnLabel, SQLXML xmlObject)
    Updates the value in the named column.
    void SQLOutput.writeSQLXML​(SQLXML theXml)
    Write a SQLXML into the output stream as an SQL XML.
  • Uses of SQLXML in javax.sql

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

    Methods in SQLite.JDBC2z that return SQLXML
    Modifier and Type Method Description
    SQLXML JDBCConnection.createSQLXML()  
    SQLXML JDBCResultSet.getSQLXML​(int colIndex)  
    SQLXML JDBCResultSet.getSQLXML​(String colName)  
    Methods in SQLite.JDBC2z with parameters of type SQLXML
    Modifier and Type Method Description
    void JDBCPreparedStatement.setSQLXML​(int parameterIndex, SQLXML xml)  
    void JDBCPreparedStatement.setSQLXML​(String parameterName, SQLXML xml)  
    void JDBCResultSet.updateSQLXML​(int colIndex, SQLXML xml)  
    void JDBCResultSet.updateSQLXML​(String colName, SQLXML xml)