service QueryDefinition in module com::sun::star::sdb::

(Global Index)

Syntax

service QueryDefinition;

Description

is a stored definition of a SQL "Select statement".

It can be used, if there is a need to execute SQL statement more than once.

Exported Interfaces

com::sun::star::beans::XPropertySet

Description

access to the owning database definition object.


Property Summary

Name is the name of the definition.

Command is the command of the query, this is typically a select statement.

EscapeProcessing should we use escape processing for the query.

UpdateTableName is the name of the table which should be updated. This is usually used for queries which relate on more than one table.

UpdateCatalogName is the name of the update table catalog.

UpdateSchemaName is the name of the update table schema.

Property Details



Name

Syntax

[readonly] string Name;

Description

is the name of the definition.


Command

Syntax

string Command;

Description

is the command of the query, this is typically a select statement.


EscapeProcessing

Syntax

boolean EscapeProcessing;

Description

should we use escape processing for the query.


UpdateTableName

Syntax

string UpdateTableName;

Description

is the name of the table which should be updated. This is usually used for queries which relate on more than one table.


UpdateCatalogName

Syntax

string UpdateCatalogName;

Description

is the name of the update table catalog.


UpdateSchemaName

Syntax

string UpdateSchemaName;

Description

is the name of the update table schema.

Top of Page