5
votes
Crash Course TMS Aurelius – AnyDAC or dbExpress?
TMS Software Blog
– In the example provided in the previous post, we saved a TCustomer instance in a local SQLite database which was accessed natively by TMS Aurelius. Let’s refactor that code a little bit: procedure SaveCustomer(Connection: IDBconnection; CustomerName: string); var Manager: TObjectManager; Customer: TCustomer; begin Manager := TObjectManager.Create(Connection); Customer := TCustomer.Create; Customer.Name := CustomerName; Manager.Save(Customer); Manager.Free; end; With the procedure above, to save a customer in the SQLite database, we used a code similar to this (non-relevant ...
Statistics
|
Visits by Source |
User Actions |



