Blog
Featured Blog Post
Tuesday, July 15, 2025
TMS FNC UI Pack 6.7IntroTMS FNC UI Pack 6.7 brings a series of significant improvements and fixes mainly focused on the TTMSFNCDataBindercomponent.The TTMSFNCDataBinder is a versatile, non-visual component i...
Blog Posts:
Latest arrow_downward | Views
Friday, May 10, 2013
We have just released TMS Aurelius 2.1 with XE4 support. This "small" release took a little longer, but with a good reason for that: thanks to the new iOS compiler provided in Delphi XE4, now TMS Aurelius supports iOS devices, in addition to the alre...
Monday, April 8, 2013
Google Chrome has the very interesting feature to be able to store its settings via your Google account. This means that when you install Chrome on a different machine and associate it with your Google account, it will automatically "inherit" all set...
Friday, March 29, 2013
Since July 2012, the website offers feature request voting capabilities for registered TMS customers. New request can be added, requests can be filtered and you can vote on requests from other customers.Now 9 months later, we’ve made an evaluation of...
Monday, March 25, 2013
Preparation of the TMS Day scheduled for April 25 is in full force now. We’re working hard on every little detail, going from papers for the hand-outs, evaluation forms, training certificates, a gift attendees will receive to of course most important...
Friday, March 22, 2013
When dealing with Aurelius and any ORM framework, one common task is to build a graphical user interface to edit/display the data. Delphi users are used to the TDataset component, which not only retrieves data from the database but also act as middle...
Friday, March 8, 2013
Inheritance is one of my favorite features in Aurelius. One of benefits of using an ORM is abstracting the SQL and start thinking (almost) purely in OOP. Inheritance and polymorphism are fundamental features of Object-oriented programming, and if whe...
Thursday, February 28, 2013
Using blobs in Aurelius is very straightforward and yet very powerful. In summary, all you have to do is declare your field/property as TBlob (declared in unit Aurelius.Types.Blob.pas). This is enough to map it to an existing blob field in your table...
Monday, February 18, 2013
Besides mapping tables to classes and table columns to fields/properties, Aurelius also maps relationships (foreign keys) to object associations. One nice thing about Aurelius is that such associations are defined in a very simple way: just reference...
Monday, February 11, 2013
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. Lets refactor that code a little bit: procedure SaveCustomer(Connection: IDBconnection; Custo...
Wednesday, February 6, 2013
Even though TMS Aurelius provides extensive documentation, I sometimes receive requests to provide more examples, sample codes and explanations about how to accomplish some daily tasks. Thus, I will start a series of posts about how to use TMS Aurel...