LibreOffice
LibreOffice 24.2 SDK API Reference
|
is used for creating and appending new objects to a specific container. More...
import"XAlterTable.idl";
Public Member Functions | |
void | alterColumnByName ([in]string colName, [in]com::sun::star::beans::XPropertySet descriptor) raises (com::sun::star::sdbc::SQLException, com::sun::star::container::NoSuchElementException) |
is intended to alter an existing column identified by its name. More... | |
void | alterColumnByIndex ([in]long index, [in]com::sun::star::beans::XPropertySet descriptor) raises (com::sun::star::sdbc::SQLException, com::sun::star::lang::IndexOutOfBoundsException) |
is intended to alter an existing column identified by its position. 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 for creating and appending new objects to a specific container.
void alterColumnByIndex | ( | [in] long | index, |
[in] com::sun::star::beans::XPropertySet | descriptor | ||
) | |||
raises | ( | com::sun::star::sdbc::SQLException, | |
com::sun::star::lang::IndexOutOfBoundsException | |||
) |
is intended to alter an existing column identified by its position.
This operation must be atomic, in that it is done in one step.s
index | the position of the column to alter |
descriptor | the new descriptor for the new column |
com::sun::star::sdbc::SQLException | if a database access error occurs. |
com::sun::star::lang::IndexOutOfBoundsException | if the given index does not denote an existing column. |
void alterColumnByName | ( | [in] string | colName, |
[in] com::sun::star::beans::XPropertySet | descriptor | ||
) | |||
raises | ( | com::sun::star::sdbc::SQLException, | |
com::sun::star::container::NoSuchElementException | |||
) |
is intended to alter an existing column identified by its name.
This operation must be atomic, in that it is done in one step.s
colName | the column name which to alter |
descriptor | the new descriptor for the new column |
com::sun::star::sdbc::SQLException | if a database access error occurs. |