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

(Global Index)

Syntax

constants group BestRowType;

Description

determines the type of the best row identifier.

Constants Summary

UNKNOWN indicates that the best row identifier 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::getBestRowIdentifier() .

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

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

Field Details



UNKNOWN

Syntax

const long  UNKNOWN = 0;

Description

indicates that the best row identifier 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::getBestRowIdentifier() .


NOT_PSEUDO

Syntax

const long  NOT_PSEUDO = 1;

Description

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


PSEUDO

Syntax

const long  PSEUDO = 2;

Description

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

Top of Page