This package can be used to retrieve and store objects in SQL database tables. It works by performing what is called object-relational mapping (ORM).
This package can create generic objects which can be accessed and changed like any other Plain Old PHP Object (POPO).
It loads an object by executing an SQL query that returns the values of the object variables. An object is saved by specifying the table where the object variables should be stored.
It provides a unit test case class to test its functionality using the SimpleTest framework.
It does not require extensive configuration via XML files. It just requires ADODB to access SQL databases, and SimpleTest unit tests. |