|  | 
| com::sun::star::beans::XPropertySetInfo | getPropertySetInfo () | 
| void | setPropertyValue ([in] string aPropertyName, [in] any aValue)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::beans::PropertyVetoException,                    com::sun::star::lang::IllegalArgumentException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | sets the value of the property with the specified name. 
 | 
| any | getPropertyValue ([in] string PropertyName)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
| void | addPropertyChangeListener ([in] string aPropertyName, [in] com::sun::star::beans::XPropertyChangeListener xListener)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | adds an XPropertyChangeListener to the specified property. 
 | 
| void | removePropertyChangeListener ([in] string aPropertyName, [in] com::sun::star::beans::XPropertyChangeListener aListener)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | removes an XPropertyChangeListener from the listener list. 
 | 
| void | addVetoableChangeListener ([in] string PropertyName, [in] com::sun::star::beans::XVetoableChangeListener aListener)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | adds an XVetoableChangeListener to the specified property with the name PropertyName. 
 | 
| void | removeVetoableChangeListener ([in] string PropertyName, [in] com::sun::star::beans::XVetoableChangeListener aListener)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | removes an XVetoableChangeListener from the listener list. 
 | 
| any | queryInterface ([in] type aType) | 
|  | queries for a new interface to an existing UNO object. 
 | 
| void | acquire () | 
|  | increases the reference counter by one. 
 | 
| void | release () | 
|  | decreases the reference counter by one. 
 | 
| XResultSetMetaData | getMetaData ()  raises (SQLException) | 
|  | retrieves the number, types, and properties of a ResultSet's columns. 
 | 
| boolean | next ()  raises (SQLException) | 
|  | moves the cursor down one row from its current position. 
 | 
| boolean | isBeforeFirst ()  raises (SQLException) | 
|  | indicates whether the cursor is before the first row in the result set. 
 | 
| boolean | isAfterLast ()  raises (SQLException) | 
|  | indicates whether the cursor is after the last row in the result set. 
 | 
| boolean | isFirst ()  raises (SQLException) | 
|  | indicates whether the cursor is on the first row of the result set. 
 | 
| boolean | isLast ()  raises (SQLException) | 
|  | indicates whether the cursor is on the last row of the result set. 
 | 
| void | beforeFirst ()  raises (SQLException) | 
|  | moves the cursor to the front of the result set, just before the first row. 
 | 
| void | afterLast ()  raises (SQLException) | 
|  | moves the cursor to the end of the result set, just after the last row. 
 | 
| boolean | first ()  raises (SQLException) | 
|  | moves the cursor to the first row in the result set. 
 | 
| boolean | last ()  raises (SQLException) | 
|  | moves the cursor to the last row in the result set. 
 | 
| long | getRow ()  raises (SQLException) | 
|  | retrieves the current row number. 
 | 
| boolean | absolute ([in] long row)  raises (SQLException) | 
|  | moves the cursor to the given row number in the result set. 
 | 
| boolean | relative ([in]long rows)  raises (SQLException) | 
|  | moves the cursor a relative number of rows, either positive or negative. 
 | 
| boolean | previous ()  raises (SQLException) | 
|  | moves the cursor to the previous row in the result set. 
 | 
| void | refreshRow ()  raises (SQLException) | 
|  | refreshes the current row with its most recent value in the database. 
 | 
| boolean | rowUpdated ()  raises (SQLException) | 
|  | indicates whether the current row has been updated. 
 | 
| boolean | rowInserted ()  raises (SQLException) | 
|  | indicates whether the current row has had an insertion. 
 | 
| boolean | rowDeleted ()  raises (SQLException) | 
|  | indicates whether a row has been deleted. 
 | 
| com::sun::star::uno::XInterface | getStatement ()  raises (SQLException) | 
|  | returns the Statement that produced this com::sun::star::sdbc::ResultSet object. 
 | 
| boolean | wasNull ()  raises (SQLException) | 
|  | reports whether the last column read had a value of SQL NULL. 
 | 
| string | getString ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a string. 
 | 
| boolean | getBoolean ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as boolean. 
 | 
| byte | getByte ([in]long columnIndex)  raises (SQLException) | 
|  | get the value of a column in the current row as a byte. 
 | 
| short | getShort ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a short. 
 | 
| long | getInt ([in]long columnIndex)  raises (SQLException) | 
|  | get the value of a column in the current row as an integer. 
 | 
| hyper | getLong ([in]long columnIndex)  raises (SQLException) | 
|  | get the value of a column in the current row as a long. 
 | 
| float | getFloat ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a float. 
 | 
| double | getDouble ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a double. 
 | 
| sequence< byte > | getBytes ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a byte array. 
 | 
| com::sun::star::util::Date | getDate ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a date object. 
 | 
| com::sun::star::util::Time | getTime ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a time object. 
 | 
| com::sun::star::util::DateTime | getTimestamp ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a datetime object. 
 | 
| com::sun::star::io::XInputStream | getBinaryStream ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a stream of uninterpreted bytes. 
 | 
| com::sun::star::io::XInputStream | getCharacterStream ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a stream of uninterpreted bytes. 
 | 
| any | getObject ([in]long columnIndex, [in]com::sun::star::container::XNameAccess typeMap)  raises (SQLException) | 
|  | returns the value of a column in the current row as an object. 
 | 
| XRef | getRef ([in]long columnIndex)  raises (SQLException) | 
|  | gets a REF(<structured-type>) column value from the current row. 
 | 
| XBlob | getBlob ([in]long columnIndex)  raises (SQLException) | 
|  | gets a BLOB value in the current row. 
 | 
| XClob | getClob ([in]long columnIndex)  raises (SQLException) | 
|  | gets a CLOB value in the current row of this ResultSetobject.
 | 
| XArray | getArray ([in]long columnIndex)  raises (SQLException) | 
|  | gets a SQL ARRAY value from the current row of this ResultSetobject.
 | 
| Public Member Functions inherited from XColumnLocate | 
| long | findColumn ([in]string columnName)  raises (SQLException) | 
|  | maps the given ResultSet column name to its ResultSet column index. 
 | 
| void | execute ()  raises (SQLException) | 
|  | populates a row set with data. 
 | 
| void | addRowSetListener ([in]XRowSetListener listener) | 
|  | adds the specified listener to receive the events "cursorMoved", "rowChanged", and "rowSetChanged". 
 | 
| void | removeRowSetListener ([in]XRowSetListener listener) | 
|  | removes the specified listener. 
 | 
| void | setNull ([in]long parameterIndex, [in]long sqlType)  raises (SQLException) | 
|  | sets the designated parameter to SQL NULL. 
 | 
| void | setObjectNull ([in]long parameterIndex, [in]long sqlType, [in]string typeName)  raises (SQLException) | 
|  | sets the designated parameter to SQL NULL. 
 | 
| void | setBoolean ([in]long parameterIndex, [in]boolean x)  raises (SQLException) | 
|  | sets the designated parameter to a boolean value. 
 | 
| void | setByte ([in]long parameterIndex, [in]byte x)  raises (SQLException) | 
|  | sets the designated parameter to a byte value. 
 | 
| void | setShort ([in]long parameterIndex, [in]short x)  raises (SQLException) | 
|  | sets the designated parameter to a short value. 
 | 
| void | setInt ([in]long parameterIndex, [in]long x)  raises (SQLException) | 
|  | sets the designated parameter to a long value. 
 | 
| void | setLong ([in]long parameterIndex, [in]hyper x)  raises (SQLException) | 
|  | sets the designated parameter to a hyper value. 
 | 
| void | setFloat ([in]long parameterIndex, [in]float x)  raises (SQLException) | 
|  | sets the designated parameter to a float value. 
 | 
| void | setDouble ([in]long parameterIndex, [in]double x)  raises (SQLException) | 
|  | sets the designated parameter to a double value. 
 | 
| void | setString ([in]long parameterIndex, [in]string x)  raises (SQLException) | 
|  | sets the designated parameter to a string value. 
 | 
| void | setBytes ([in]long parameterIndex, [in]sequence< byte > x)  raises (SQLException) | 
|  | sets the designated parameter to a sequence of bytes. 
 | 
| void | setDate ([in]long parameterIndex, [in]com::sun::star::util::Date x)  raises (SQLException) | 
|  | sets the designated parameter to a date value. 
 | 
| void | setTime ([in]long parameterIndex, [in]com::sun::star::util::Time x)  raises (SQLException) | 
|  | sets the designated parameter to a time value. 
 | 
| void | setTimestamp ([in]long parameterIndex, [in]com::sun::star::util::DateTime x)  raises (SQLException) | 
|  | sets the designated parameter to a datetime value. 
 | 
| void | setBinaryStream ([in]long parameterIndex, [in]com::sun::star::io::XInputStream x, [in]long length)  raises (SQLException) | 
|  | sets the designated parameter to the given input stream, which will have the specified number of bytes. 
 | 
| void | setCharacterStream ([in]long parameterIndex, [in]com::sun::star::io::XInputStream x, [in]long length)  raises (SQLException) | 
|  | sets the designated parameter to the given input stream, which will have the specified number of bytes. 
 | 
| void | setObject ([in]long parameterIndex, [in]any x)  raises (SQLException) | 
|  | sets the value of a parameter using an any. 
 | 
| void | setObjectWithInfo ([in]long parameterIndex, [in]any x, [in]long targetSqlType, [in]long scale)  raises (SQLException) | 
|  | set a value from the Datatype ANY for a parameter. 
 | 
| void | setRef ([in]long parameterIndex, [in]XRef x)  raises (SQLException) | 
|  | sets a REF(<structured-type>) parameter. 
 | 
| void | setBlob ([in]long parameterIndex, [in]XBlob x)  raises (SQLException) | 
|  | sets a BLOB parameter. 
 | 
| void | setClob ([in]long parameterIndex, [in]XClob x)  raises (SQLException) | 
|  | sets a CLOB parameter. 
 | 
| void | setArray ([in]long parameterIndex, [in]XArray x)  raises (SQLException) | 
|  | sets an Array parameter. 
 | 
| void | clearParameters ()  raises (SQLException) | 
|  | clears the current parameter values immediately. 
 | 
| void | dispose () | 
|  | The owner of an object calls this method to explicitly free all resources kept by this object and thus break cyclic references. 
 | 
| void | addEventListener ([in] XEventListener xListener) | 
|  | adds an event listener to the object. 
 | 
| void | removeEventListener ([in] XEventListener aListener) | 
|  | removes an event listener from the listener list. 
 | 
| any | queryInterface ([in] type aType) | 
|  | queries for a new interface to an existing UNO object. 
 | 
| void | acquire () | 
|  | increases the reference counter by one. 
 | 
| void | release () | 
|  | decreases the reference counter by one. 
 | 
| void | close ()  raises (SQLException) | 
|  | releases all resources connected to an object. 
 | 
| com::sun::star::beans::XPropertySetInfo | getPropertySetInfo () | 
| void | setPropertyValue ([in] string aPropertyName, [in] any aValue)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::beans::PropertyVetoException,                    com::sun::star::lang::IllegalArgumentException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | sets the value of the property with the specified name. 
 | 
| any | getPropertyValue ([in] string PropertyName)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
| void | addPropertyChangeListener ([in] string aPropertyName, [in] com::sun::star::beans::XPropertyChangeListener xListener)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | adds an XPropertyChangeListener to the specified property. 
 | 
| void | removePropertyChangeListener ([in] string aPropertyName, [in] com::sun::star::beans::XPropertyChangeListener aListener)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | removes an XPropertyChangeListener from the listener list. 
 | 
| void | addVetoableChangeListener ([in] string PropertyName, [in] com::sun::star::beans::XVetoableChangeListener aListener)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | adds an XVetoableChangeListener to the specified property with the name PropertyName. 
 | 
| void | removeVetoableChangeListener ([in] string PropertyName, [in] com::sun::star::beans::XVetoableChangeListener aListener)  raises ( com::sun::star::beans::UnknownPropertyException,                    com::sun::star::lang::WrappedTargetException ) | 
|  | removes an XVetoableChangeListener from the listener list. 
 | 
| any | getWarnings ()  raises (SQLException) | 
|  | returns the first warning reported by calls on an object that supports the usage of warnings. 
 | 
| void | clearWarnings ()  raises (SQLException) | 
|  | clears all warnings reported for the object implementing the interface. 
 | 
| XResultSetMetaData | getMetaData ()  raises (SQLException) | 
|  | retrieves the number, types, and properties of a ResultSet's columns. 
 | 
| boolean | next ()  raises (SQLException) | 
|  | moves the cursor down one row from its current position. 
 | 
| boolean | isBeforeFirst ()  raises (SQLException) | 
|  | indicates whether the cursor is before the first row in the result set. 
 | 
| boolean | isAfterLast ()  raises (SQLException) | 
|  | indicates whether the cursor is after the last row in the result set. 
 | 
| boolean | isFirst ()  raises (SQLException) | 
|  | indicates whether the cursor is on the first row of the result set. 
 | 
| boolean | isLast ()  raises (SQLException) | 
|  | indicates whether the cursor is on the last row of the result set. 
 | 
| void | beforeFirst ()  raises (SQLException) | 
|  | moves the cursor to the front of the result set, just before the first row. 
 | 
| void | afterLast ()  raises (SQLException) | 
|  | moves the cursor to the end of the result set, just after the last row. 
 | 
| boolean | first ()  raises (SQLException) | 
|  | moves the cursor to the first row in the result set. 
 | 
| boolean | last ()  raises (SQLException) | 
|  | moves the cursor to the last row in the result set. 
 | 
| long | getRow ()  raises (SQLException) | 
|  | retrieves the current row number. 
 | 
| boolean | absolute ([in] long row)  raises (SQLException) | 
|  | moves the cursor to the given row number in the result set. 
 | 
| boolean | relative ([in]long rows)  raises (SQLException) | 
|  | moves the cursor a relative number of rows, either positive or negative. 
 | 
| boolean | previous ()  raises (SQLException) | 
|  | moves the cursor to the previous row in the result set. 
 | 
| void | refreshRow ()  raises (SQLException) | 
|  | refreshes the current row with its most recent value in the database. 
 | 
| boolean | rowUpdated ()  raises (SQLException) | 
|  | indicates whether the current row has been updated. 
 | 
| boolean | rowInserted ()  raises (SQLException) | 
|  | indicates whether the current row has had an insertion. 
 | 
| boolean | rowDeleted ()  raises (SQLException) | 
|  | indicates whether a row has been deleted. 
 | 
| com::sun::star::uno::XInterface | getStatement ()  raises (SQLException) | 
|  | returns the Statement that produced this com::sun::star::sdbc::ResultSet object. 
 | 
| void | insertRow ()  raises (SQLException) | 
|  | inserts the contents of the insert row into the result set and the database. 
 | 
| void | updateRow ()  raises (SQLException) | 
|  | updates the underlying database with the new contents of the current row. 
 | 
| void | deleteRow ()  raises (SQLException) | 
|  | deletes the current row from the result set and the underlying database. 
 | 
| void | cancelRowUpdates ()  raises (SQLException) | 
|  | cancels the updates made to a row. 
 | 
| void | moveToInsertRow ()  raises (SQLException) | 
|  | moves the cursor to the insert row. 
 | 
| void | moveToCurrentRow ()  raises (SQLException) | 
|  | moves the cursor to the remembered cursor position, usually the current row. 
 | 
| boolean | wasNull ()  raises (SQLException) | 
|  | reports whether the last column read had a value of SQL NULL. 
 | 
| string | getString ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a string. 
 | 
| boolean | getBoolean ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as boolean. 
 | 
| byte | getByte ([in]long columnIndex)  raises (SQLException) | 
|  | get the value of a column in the current row as a byte. 
 | 
| short | getShort ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a short. 
 | 
| long | getInt ([in]long columnIndex)  raises (SQLException) | 
|  | get the value of a column in the current row as an integer. 
 | 
| hyper | getLong ([in]long columnIndex)  raises (SQLException) | 
|  | get the value of a column in the current row as a long. 
 | 
| float | getFloat ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a float. 
 | 
| double | getDouble ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a double. 
 | 
| sequence< byte > | getBytes ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a byte array. 
 | 
| com::sun::star::util::Date | getDate ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a date object. 
 | 
| com::sun::star::util::Time | getTime ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a time object. 
 | 
| com::sun::star::util::DateTime | getTimestamp ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a datetime object. 
 | 
| com::sun::star::io::XInputStream | getBinaryStream ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a stream of uninterpreted bytes. 
 | 
| com::sun::star::io::XInputStream | getCharacterStream ([in]long columnIndex)  raises (SQLException) | 
|  | gets the value of a column in the current row as a stream of uninterpreted bytes. 
 | 
| any | getObject ([in]long columnIndex, [in]com::sun::star::container::XNameAccess typeMap)  raises (SQLException) | 
|  | returns the value of a column in the current row as an object. 
 | 
| XRef | getRef ([in]long columnIndex)  raises (SQLException) | 
|  | gets a REF(<structured-type>) column value from the current row. 
 | 
| XBlob | getBlob ([in]long columnIndex)  raises (SQLException) | 
|  | gets a BLOB value in the current row. 
 | 
| XClob | getClob ([in]long columnIndex)  raises (SQLException) | 
|  | gets a CLOB value in the current row of this ResultSetobject.
 | 
| XArray | getArray ([in]long columnIndex)  raises (SQLException) | 
|  | gets a SQL ARRAY value from the current row of this ResultSetobject.
 | 
| Protected Member Functions inherited from XColumnLocate | 
| long | findColumn ([in]string columnName)  raises (SQLException) | 
|  | maps the given ResultSet column name to its ResultSet column index. 
 | 
| void | updateNull ([in]long columnIndex)  raises (SQLException) | 
|  | gives a nullable column a null value. 
 | 
| void | updateBoolean ([in]long columnIndex, [in]boolean x)  raises (SQLException) | 
|  | updates a column with a boolean value. 
 | 
| void | updateByte ([in]long columnIndex, [in]byte x)  raises (SQLException) | 
|  | updates a column with a byte value. 
 | 
| void | updateShort ([in]long columnIndex, [in]short x)  raises (SQLException) | 
|  | updates a column with a short value. 
 | 
| void | updateInt ([in]long columnIndex, [in]long x)  raises (SQLException) | 
|  | updates a column with an long value. 
 | 
| void | updateLong ([in]long columnIndex, [in]hyper x)  raises (SQLException) | 
|  | updates a column with a hyper value. 
 | 
| void | updateFloat ([in]long columnIndex, [in]float x)  raises (SQLException) | 
|  | updates a column with a float value. 
 | 
| void | updateDouble ([in]long columnIndex, [in]double x)  raises (SQLException) | 
|  | updates a column with a double value. 
 | 
| void | updateString ([in]long columnIndex, [in]string x)  raises (SQLException) | 
|  | updates a column with a string value. 
 | 
| void | updateBytes ([in]long columnIndex, [in]sequence< byte > x)  raises (SQLException) | 
|  | updates a column with a byte array value. 
 | 
| void | updateDate ([in]long columnIndex, [in]com::sun::star::util::Date x)  raises (SQLException) | 
|  | updates a column with a date value. 
 | 
| void | updateTime ([in]long columnIndex, [in]com::sun::star::util::Time x)  raises (SQLException) | 
|  | updates a column with a time value. 
 | 
| void | updateTimestamp ([in]long columnIndex, [in]com::sun::star::util::DateTime x)  raises (SQLException) | 
|  | updates a column with a timestamp value. 
 | 
| void | updateBinaryStream ([in]long columnIndex, [in]com::sun::star::io::XInputStream x, [in]long length)  raises (SQLException) | 
|  | updates a column with a stream value. 
 | 
| void | updateCharacterStream ([in]long columnIndex, [in]com::sun::star::io::XInputStream x, [in]long length)  raises (SQLException) | 
|  | updates a column with a stream value. 
 | 
| void | updateObject ([in]long columnIndex, [in]any x)  raises (SQLException) | 
|  | updates a column with an object value. 
 | 
| void | updateNumericObject ([in]long columnIndex, [in]any x, [in]long scale)  raises (SQLException) | 
|  | updates a column with an object value. 
 |