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

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

interface XResultSetMetaDataSupplier

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

Description
provides access to the meta data of a result set.

The number, types, and properties of a ResultSet's columns are provided by the ResultSetMetaData object returned by the XResultSetMetaDataSupplier::getMetaData() method.



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::ucb::ContentResultSet provides access to the children of a folder content.

Methods' Summary

getMetaData retrieves the number, types, and properties of a ResultSet's columns.

Methods' Details

getMetaData
 
com::sun::star::sdbc::XResultSetMetaData
getMetaData( )
raises ( com::sun::star::sdbc::SQLException );

Description
retrieves the number, types, and properties of a ResultSet's columns.
Returns
the meta data of the ResultSet.
Throws
SQLException if a database access error occurs.

Top of Page