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

(Global Index)

Syntax

service ResultColumn;

Description

describes a column of a result set.

Included Services

com::sun::star::sdbcx::Column

Description

describes the common properties of a database column.


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

Description

[optional], access to layout settings for a column.


Property Summary

IsSearchable indicates whether the column can be used in a Where clause.

IsSigned indicates whether values in the column are signed numbers.

IsCaseSensitive indicates that a column is case sensitive.

DisplaySize indicates the column's normal max width in chars..

Label gets the suggested column title for use in printouts and displays.

IsReadOnly indicates whether a column is definitely, not writable.

IsWritable indicates whether it is possible for a write on the column to succeed.

IsDefinitelyWritable indicates whether a write on the column will definitely succeed.

ServiceName returns the fully-qualified name of the service whose instances are manufactured if the method XRow::getObject)= is called to retrieve a value from the column.

TableName gets a column's table name.

SchemaName gets a column's schema name.

CatalogName gets a column's table's catalog name.

Property Details



IsSearchable

Syntax

[readonly] boolean IsSearchable;

Description

indicates whether the column can be used in a Where clause.


IsSigned

Syntax

[readonly] boolean IsSigned;

Description

indicates whether values in the column are signed numbers.


IsCaseSensitive

Syntax

[readonly] boolean IsCaseSensitive;

Description

indicates that a column is case sensitive.


DisplaySize

Syntax

[readonly] long DisplaySize;

Description

indicates the column's normal max width in chars..


Label

Syntax

[readonly] string Label;

Description

gets the suggested column title for use in printouts and displays.


IsReadOnly

Syntax

[readonly] boolean IsReadOnly;

Description

indicates whether a column is definitely, not writable.


IsWritable

Syntax

[readonly] boolean IsWritable;

Description

indicates whether it is possible for a write on the column to succeed.


IsDefinitelyWritable

Syntax

[readonly] boolean IsDefinitelyWritable;

Description

indicates whether a write on the column will definitely succeed.


ServiceName

Syntax

[readonly] string ServiceName;

Description

returns the fully-qualified name of the service whose instances are manufactured if the method XRow::getObject)= is called to retrieve a value from the column.


TableName

Syntax

[readonly] string TableName;

Description

gets a column's table name.


SchemaName

Syntax

[readonly] string SchemaName;

Description

gets a column's schema name.


CatalogName

Syntax

[readonly] string CatalogName;

Description

gets a column's table's catalog name.

Top of Page