constants group ColumnType in module com::sun::star::sdbc::

(Global Index)

Syntax

constants group ColumnType;

Description

determines the type of a version column.

Constants Summary

UNKNOWN indicates that this column may or may not be a pseudo-column. A possible value for the column PSEUDO_COLUMN in the XResultSet object returned by the method XDatabaseMetaData::getVersionColumns() .

NOT_PSEUDO indicates that this column is NOT a pseudo-column. A possible value for the column PSEUDO_COLUMN in the XResultSet object returned by the method XDatabaseMetaData::getVersionColumns() .

PSEUDO indicates that this column is a pseudo-column. A possible value for the column PSEUDO_COLUMN in the XResultSet object returned by the method XDatabaseMetaData::getVersionColumns() .

Field Details



UNKNOWN

Syntax

const long  UNKNOWN = 0;

Description

indicates that this column may or may not be a pseudo-column. A possible value for the column PSEUDO_COLUMN in the XResultSet object returned by the method XDatabaseMetaData::getVersionColumns() .


NOT_PSEUDO

Syntax

const long  NOT_PSEUDO = 1;

Description

indicates that this column is NOT a pseudo-column. A possible value for the column PSEUDO_COLUMN in the XResultSet object returned by the method XDatabaseMetaData::getVersionColumns() .


PSEUDO

Syntax

const long  PSEUDO = 2;

Description

indicates that this column is a pseudo-column. A possible value for the column PSEUDO_COLUMN in the XResultSet object returned by the method XDatabaseMetaData::getVersionColumns() .

Top of Page