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

com :: sun :: star :: sdbc ::

interface XCloseable

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

Description
provides for the releasing of resources acquired by the implementing object.


Known Services which Export this Interface

com::sun::star::sdbc::PreparedStatement represents a precompiled SQL statement.
com::sun::star::sdbc::ResultSet provides access to a table of data. A ResultSet object is usually generated by executing a Statement.
com::sun::star::sdbc::Statement is used for executing a static SQL statement and obtaining the results produced by it.
com::sun::star::ucb::ContentResultSet provides access to the children of a folder content.

Methods' Summary

close releases all resources connected to an object.

Methods' Details

close
 
void
close( )
raises ( com::sun::star::sdbc::SQLException );

Description
releases all resources connected to an object.
Throws
SQLException if a database access error occurs.

Top of Page