interface XResultSetMetaDataSupplier in module com::sun::star::sdbc::

(Global Index)

Syntax

interface XResultSetMetaDataSupplier : 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.

Method Summary

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

Known Services Which Export this Interface

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

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

com::sun::star::ucb::ContentResultSet

Method Details



getMetaData

Syntax

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