Data.DBXCommonTable.TDBXTable.FindStringKey

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Data.DBXCommonTable.pas
Data.DBXCommonTable.hpp
Unit: Data.DBXCommonTable
Parent: TDBXTable

Delphi

function FindStringKey(const Ordinal: Integer; const Value: string): Boolean; virtual;

C++

virtual bool __fastcall FindStringKey(const int Ordinal, const System::UnicodeString Value);

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.

See Also