Object oriented way to access tables and fields
Posted: Fri 29 Jul 2016 01:39
Hi,
Is there a way to access tables and fields in a more Object oriented way like for example:
instead of
Is there a way to access tables and fields in a more Object oriented way like for example:
Code: Select all
Customers.FirstName := 'David';
Code: Select all
<TIBCQuery>.fieldbyname('FirstName').Asstring := 'David';