devxlogo

What is the best way to update a date field every time a record is posted?

What is the best way to update a date field every time a record is posted?

Question:
When I add the code ‘update.text := dateToStr(Date)’ toOnUpdateChange of the DataSource, it works some of the time. Forexample, if the record is posted by moving to another record, theupdate works fine. If it is posted by clicking the post button (fromdataNavigator component), the update does not work. Any suggestions?

Answer:
Rather than rely on the TDataSource object, it would be better to place your date-stamping code in your table’s BeforePost method. As a rule of thumb, I typically employ the TDataSource object as merely a conduit between a Data Control and a Data Access Objec, because the TDataSource object’s native functionality is specific towards creating the link between those two objects. On the other hand, the TTable object’s native functionality is to deal with data. So in your programming, consider the default functionality of an object before you try to code something that it may not be able to handle well.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist