LibreOffice
LibreOffice 24.2 SDK API Reference
|
is used to update data which is collected in a row. More...
import"XRowUpdate.idl";
Public Member Functions | |
void | updateNull ([in]long columnIndex) raises (SQLException) |
gives a nullable column a null value. More... | |
void | updateBoolean ([in]long columnIndex, [in]boolean x) raises (SQLException) |
updates a column with a boolean value. More... | |
void | updateByte ([in]long columnIndex, [in]byte x) raises (SQLException) |
updates a column with a byte value. More... | |
void | updateShort ([in]long columnIndex, [in]short x) raises (SQLException) |
updates a column with a short value. More... | |
void | updateInt ([in]long columnIndex, [in]long x) raises (SQLException) |
updates a column with an long value. More... | |
void | updateLong ([in]long columnIndex, [in]hyper x) raises (SQLException) |
updates a column with a hyper value. More... | |
void | updateFloat ([in]long columnIndex, [in]float x) raises (SQLException) |
updates a column with a float value. More... | |
void | updateDouble ([in]long columnIndex, [in]double x) raises (SQLException) |
updates a column with a double value. More... | |
void | updateString ([in]long columnIndex, [in]string x) raises (SQLException) |
updates a column with a string value. More... | |
void | updateBytes ([in]long columnIndex, [in]sequence< byte > x) raises (SQLException) |
updates a column with a byte array value. More... | |
void | updateDate ([in]long columnIndex, [in]com::sun::star::util::Date x) raises (SQLException) |
updates a column with a date value. More... | |
void | updateTime ([in]long columnIndex, [in]com::sun::star::util::Time x) raises (SQLException) |
updates a column with a time value. More... | |
void | updateTimestamp ([in]long columnIndex, [in]com::sun::star::util::DateTime x) raises (SQLException) |
updates a column with a timestamp value. More... | |
void | updateBinaryStream ([in]long columnIndex, [in]com::sun::star::io::XInputStream x, [in]long length) raises (SQLException) |
updates a column with a stream value. More... | |
void | updateCharacterStream ([in]long columnIndex, [in]com::sun::star::io::XInputStream x, [in]long length) raises (SQLException) |
updates a column with a stream value. More... | |
void | updateObject ([in]long columnIndex, [in]any x) raises (SQLException) |
updates a column with an object value. More... | |
void | updateNumericObject ([in]long columnIndex, [in]any x, [in]long scale) raises (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] long | columnIndex, |
[in] com::sun::star::io::XInputStream | x, | ||
[in] long | length | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a stream value.
columnIndex | the position of the column |
x | the new column value |
length | how much data should be read out of the stream |
SQLException | if a database access error occurs. |
void updateBoolean | ( | [in] long | columnIndex, |
[in] boolean | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a boolean value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateByte | ( | [in] long | columnIndex, |
[in] byte | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a byte value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateBytes | ( | [in] long | columnIndex, |
[in] sequence< byte > | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a byte array value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateCharacterStream | ( | [in] long | columnIndex, |
[in] com::sun::star::io::XInputStream | x, | ||
[in] long | length | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a stream value.
columnIndex | the position of the column |
x | the new column value |
length | how much data should be read out of the stream |
SQLException | if a database access error occurs. |
void updateDate | ( | [in] long | columnIndex, |
[in] com::sun::star::util::Date | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a date value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateDouble | ( | [in] long | columnIndex, |
[in] double | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a double value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateFloat | ( | [in] long | columnIndex, |
[in] float | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a float value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateInt | ( | [in] long | columnIndex, |
[in] long | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with an long value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateLong | ( | [in] long | columnIndex, |
[in] hyper | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a hyper value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateNull | ( | [in] long | columnIndex | ) | |
raises | ( | SQLException | |||
) |
gives a nullable column a null value.
columnIndex | the position of the column |
SQLException | if a database access error occurs. |
void updateNumericObject | ( | [in] long | columnIndex, |
[in] any | x, | ||
[in] long | scale | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with an object value.
columnIndex | the position of the column |
x | the new column value |
scale | defines the scale which should be used to write the numeric value |
SQLException | if a database access error occurs. |
void updateObject | ( | [in] long | columnIndex, |
[in] any | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with an object value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateShort | ( | [in] long | columnIndex, |
[in] short | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a short value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateString | ( | [in] long | columnIndex, |
[in] string | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a string value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateTime | ( | [in] long | columnIndex, |
[in] com::sun::star::util::Time | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a time value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |
void updateTimestamp | ( | [in] long | columnIndex, |
[in] com::sun::star::util::DateTime | x | ||
) | |||
raises | ( | SQLException | |
) |
updates a column with a timestamp value.
columnIndex | the position of the column |
x | the new column value |
SQLException | if a database access error occurs. |