Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: sdbcx ::

interface XRename

Base Interface
com::sun::star::uno::XInterface

Description
supports the renaming of definition objects.
This is a very desirable feature which is not supported by all databases. There is no standard SQL statement provided for this feature.


Known Services which Export this Interface

com::sun::star::sdbcx::Table used to specify a table in a database. A table is described by its name and one or more columns.
com::sun::star::sdbcx::View is used to specify views on data. A view object is only used for creation and deletion. Inspecting the command of a view is normally not supported.
com::sun::star::sdb::DatabaseDocument specifies documents which belong to a database access bean.
com::sun::star::sdb::Query is a stored definition of a SQL query.

Methods' Summary

rename is intended to alter the name of a object.

Methods' Details

rename
 
void
rename(
[ in ] string newName )
raises ( com::sun::star::sdbc::SQLException, com::sun::star::container::ElementExistException );

Description
is intended to alter the name of a object.
Parameter newName
the new name
Throws
com::sun::star::sdbc::SQLException if a database access error occurs.

Top of Page