#php
Read more stories on Hashnode
Articles with this tag
Or why I wrote another PHP ORM · In our last episode, I wrote a class I call DataObject. It will be the base class for my Active Record class since it...
Or why I wrote another PHP ORM · Active Records are a defined Design Pattern with it’s own Wikipedia page! So why create another Active Record...
Or why I wrote another PHP ORM · It is time to cover the Active Record class for my ORM. The Active Record design pattern is well known and there are...
You have probably heard of the Active Record design pattern, but now I am going to introduce a new design patterned called an Active Table. Just like...
Or why I wrote another PHP ORM · One of the biggest problems in abstracting SQL into an Object Oriented design is how to model the WHERE, HAVING and JOIN...
Or why I wrote another PHP ORM · In a previous post, I talked about the PHP Iterator interface and how to write a CSV reader. Now it is time to do the...