Top   Module   Use   Manual   Index 
 INCLUDED SERVICES | EXPORTED INTERFACES | PROPERTIES' SUMMARY | PROPERTIES' DETAILS 

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

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.

Properties' 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.

Properties' Details

IsSearchable
 
[ readonly ] boolean IsSearchable;
Description
indicates whether the column can be used in a Where clause.
IsSigned
 
[ readonly ] boolean IsSigned;
Description
indicates whether values in the column are signed numbers.
IsCaseSensitive
 
[ readonly ] boolean IsCaseSensitive;
Description
indicates that a column is case sensitive.
DisplaySize
 
[ readonly ] long DisplaySize;
Description
indicates the column's normal max width in chars..
Label
 
[ readonly ] string Label;
Description
gets the suggested column title for use in printouts and displays.
IsReadOnly
 
[ readonly ] boolean IsReadOnly;
Description
indicates whether a column is definitely, not writable.
IsWritable
 
[ readonly ] boolean IsWritable;
Description
indicates whether it is possible for a write on the column to succeed.
IsDefinitelyWritable
 
[ readonly ] boolean IsDefinitelyWritable;
Description
indicates whether a write on the column will definitely succeed.
ServiceName
 
[ 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
 
[ readonly ] string TableName;
Description
gets a column's table name.
SchemaName
 
[ readonly ] string SchemaName;
Description
gets a column's schema name.
CatalogName
 
[ readonly ] string CatalogName;
Description
gets a column's table's catalog name.

Top of Page