Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

DevShed:
Updating and Deleting Database Records with the Active Record Pattern
Mar 12, 2009 @ 14:35:02

DevShed has posted the next article in their Active Record series. This time it's a look at updating and deleting records from the database (the previous article was about selecting and inserting).

This pattern permits you to achieve a high level of abstraction when performing typical operations, such as insertions, updates and deletions of records, since all of these tasks are handled transparently by data mappers objects or a data access class. [...] Now, it's time to learn how to use the active record pattern for performing database updates and deletions in a few simple steps.

After reviewing the previous article, they add some new features onto the MySQL access class to let you update and remove data through a similar interface.

tagged: update delete tutorial activerecord designpattern database mysql

Link:


Trending Topics: