AdminAsString property

Applies to
TQDB, TQDBItem, TQDBView

Declaration
property AdminAsString[Key : TKey] : string;

Description
Stores and retrieves Admin items as string values, e.g.:

   Q.AdminAsString['three']:='Robert R. Marsh, SJ';
   ...
   Edit1.Text:=Q.AdminAsString['three'];

If an attempt is made to retrieve an item which doesn't exist an EQDBBadKey exception is raised.
Storing an item with an existing key overwrites the previous value.

If the key exists but the item is not a string the result is undefined.

Under D16 strings longer than 255 characters are truncated.

Run-time only