Data.DBXCommonTable.TDBXTable.FindStringKey
Delphi
function FindStringKey(const Ordinal: Integer; const Value: string): Boolean; virtual;
C++
virtual bool __fastcall FindStringKey(const int Ordinal, const System::UnicodeString Value);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | Data.DBXCommonTable.pas Data.DBXCommonTable.hpp |
Data.DBXCommonTable | TDBXTable |
Description
Checks whether the string key Value
is in the Ordinal
column.
FindStringKey checks whether the string key Value
is in the Ordinal
column. The method returns True if the string key is found, and False otherwise.
By default, the method raises an 'Unsupported operation' exception, so every descendant of TDBXTable must implement this method if closing the table is supported.