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

com :: sun :: star :: sdb ::

interface XCommandPreparation

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

Description
is used for preparation of commands.

A command could be a table, query, or any kind of SQL statement prepared by the user.



Known Services which Export this Interface

com::sun::star::sdb::Connection extends the connection of SDBC by providing the data definitions of a connected database.

Methods' Summary

prepareCommand creates a PreparedStatement object for sending parameterized SQL statements to the database.

Methods' Details

prepareCommand
 
com::sun::star::sdbc::XPreparedStatement
prepareCommand(
[ in ] string command,
[ in ] long commandType )
raises ( com::sun::star::sdbc::SQLException );

Description
creates a PreparedStatement object for sending parameterized SQL statements to the database.

A SQL statement with or without IN parameters can be pre-compiled and stored in a PreparedStatement object. This object can then be used to efficiently execute this statement multiple times.

Parameter command
the command to be prepared. Any SQL statement.
Parameter commandType
kind of the command CommandType
Returns
the PreparedStatement object
Throws
com::sun::star::sdbc::SQLException if a database access error occurs.

Top of Page