LibreOffice
LibreOffice 24.2 SDK API Reference
|
is used to update data which is collected in a row. More...
import"XColumnUpdate.idl";
Public Member Functions | |
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... | |
Public Member Functions inherited from XInterface | |
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... | |
is used to update data which is collected in a row.
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.
x | the new column value |
length | the length of the stream |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateBoolean | ( | [in] boolean | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a boolean value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateByte | ( | [in] byte | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a byte value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateBytes | ( | [in] sequence< byte > | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a byte array value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
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.
x | the new column value |
length | the length of the stream |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateDate | ( | [in] com::sun::star::util::Date | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a Date value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateDouble | ( | [in] double | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a double value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateFloat | ( | [in] float | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a float value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateInt | ( | [in] long | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a long value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateLong | ( | [in] hyper | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a hyper value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateNull | ( | ) | ||
raises | ( | com::sun::star::sdbc::SQLException | ||
) |
gives a nullable column a null value.
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateNumericObject | ( | [in] any | x, |
[in] long | scale | ||
) | |||
raises | ( | com::sun::star::sdbc::SQLException | |
) |
updates a column with an Object value.
x | the new column value |
scale | the scale |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateObject | ( | [in] any | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with an Object value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateShort | ( | [in] short | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a short value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateString | ( | [in] string | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a string value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateTime | ( | [in] com::sun::star::util::Time | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a Time value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
void updateTimestamp | ( | [in] com::sun::star::util::DateTime | x | ) | |
raises | ( | com::sun::star::sdbc::SQLException | |||
) |
updates a column with a Timestamp value.
x | the new column value |
com::sun::star::sdbc::SQLException | if a database access error occurs. |