I have a database (SQLite, Android) which I want to access using TTMSFMXGrid or TTMSFMXLiveGrid. Database has many (1000's) of rows.
I want fast access/scrolling, and I want to connect the Data to the grid at runtime.
So far, I've connected the TAureliusDataset to a cursor as follows :
AureliusDataset1.SetSourceCriteria(Manager.Find<TTest>, 25);
The TTest class has a field/property called 'Description' which is a string)
How do I populate the grid with a single column (descriptions). I assume its all done with livebindings, but I cannot work out how to create these properly at runtime.
Can anyone provide an example ?