Applies to
TQDB, TQDBItem, TQDBView
Declaration
property AdminAsInteger[Key : TKey] : longint;
Description
Stores and retrieves Admin items as (long) integer values, e.g.:
Q.AdminAsInteger['two']:=2;
...
n:=Q.AdminAsInteger['two'];
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 integer the result is undefined.
Run-time only