defines a column used for a result set which contains the data definition and the data of the column of the current row of a result set.
More...
|
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. More...
|
|
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. More...
|
|
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. More...
|
|
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. More...
|
|
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. More...
|
|
any | queryInterface ([in] type aType) |
| queries for a new interface to an existing UNO object. More...
|
|
void | acquire () |
| increases the reference counter by one. More...
|
|
void | release () |
| decreases the reference counter by one. More...
|
|
Public Member Functions inherited from XColumn |
boolean | wasNull () raises (com::sun::star::sdbc::SQLException) |
| reports whether the last column read had a value of SQL NULL. More...
|
|
string | getString () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a String. More...
|
|
boolean | getBoolean () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as boolean. More...
|
|
byte | getByte () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a byte. More...
|
|
short | getShort () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a short. More...
|
|
long | getInt () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a long. More...
|
|
hyper | getLong () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a hyper. More...
|
|
float | getFloat () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a float. More...
|
|
double | getDouble () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a double. More...
|
|
sequence< byte > | getBytes () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a byte array. More...
|
|
com::sun::star::util::Date | getDate () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a date object. More...
|
|
com::sun::star::util::Time | getTime () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a time object. More...
|
|
com::sun::star::util::DateTime | getTimestamp () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a datetime object. More...
|
|
com::sun::star::io::XInputStream | getBinaryStream () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a stream of uninterpreted bytes. More...
|
|
com::sun::star::io::XInputStream | getCharacterStream () raises (com::sun::star::sdbc::SQLException) |
| gets the value of a column in the current row as a stream of uninterpreted bytes. More...
|
|
any | getObject ([in]com::sun::star::container::XNameAccess typeMap) raises (com::sun::star::sdbc::SQLException) |
|
com::sun::star::sdbc::XRef | getRef () raises (com::sun::star::sdbc::SQLException) |
| gets a REF(<structured-type>) column value from the current row. More...
|
|
com::sun::star::sdbc::XBlob | getBlob () raises (com::sun::star::sdbc::SQLException) |
| gets a BLOB (Binary Large OBject) value in the current row. More...
|
|
com::sun::star::sdbc::XClob | getClob () raises (com::sun::star::sdbc::SQLException) |
| gets a CLOB value in the current row of this ResultSet object. More...
|
|
com::sun::star::sdbc::XArray | getArray () raises (com::sun::star::sdbc::SQLException) |
| gets a SQL ARRAY value from the current row. More...
|
|
Public Member Functions inherited from XColumnUpdate |
void | updateNull () raises (com::sun::star::sdbc::SQLException) |
| gives a nullable column a null value. More...
|
|
void | updateBoolean ([in]boolean x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a boolean value. More...
|
|
void | updateByte ([in]byte x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a byte value. More...
|
|
void | updateShort ([in]short x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a short value. More...
|
|
void | updateInt ([in]long x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a long value. More...
|
|
void | updateLong ([in]hyper x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a hyper value. More...
|
|
void | updateFloat ([in]float x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a float value. More...
|
|
void | updateDouble ([in]double x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a double value. More...
|
|
void | updateString ([in]string x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a string value. More...
|
|
void | updateBytes ([in]sequence< byte > x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a byte array value. More...
|
|
void | updateDate ([in]com::sun::star::util::Date x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a Date value. More...
|
|
void | updateTime ([in]com::sun::star::util::Time x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a Time value. More...
|
|
void | updateTimestamp ([in]com::sun::star::util::DateTime x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a Timestamp value. More...
|
|
void | updateBinaryStream ([in]com::sun::star::io::XInputStream x, [in]long length) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a stream value. More...
|
|
void | updateCharacterStream ([in]com::sun::star::io::XInputStream x, [in]long length) raises (com::sun::star::sdbc::SQLException) |
| updates a column with a stream value. More...
|
|
void | updateObject ([in]any x) raises (com::sun::star::sdbc::SQLException) |
| updates a column with an Object value. More...
|
|
void | updateNumericObject ([in]any x, [in]long scale) raises (com::sun::star::sdbc::SQLException) |
| updates a column with an Object value. More...
|
|
com::sun::star::beans::XPropertySet | createDataDescriptor () |
| returns a descriptor of a definition object. More...
|
|
any | queryInterface ([in] type aType) |
| queries for a new interface to an existing UNO object. More...
|
|
void | acquire () |
| increases the reference counter by one. More...
|
|
void | release () |
| decreases the reference counter by one. More...
|
|
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. More...
|
|
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. More...
|
|
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. More...
|
|
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. More...
|
|
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. More...
|
|
defines a column used for a result set which contains the data definition and the data of the column of the current row of a result set.