class Record - jcobban/Genealogy GitHub Wiki

Up: Object-Oriented Access to Database Records

Source Code

This is a base class that implements common functionality used by all database record classes. In particular:

  • The value of a column within a record is read and modified by using subscripts, as if it is an array, with the class implementation maintaining the logical integrity of the database.
  • The database is updated by $record->save() which takes care of details such as whether the UPDATE or INSERT command is required.

Extended By

In the documentation of derived classes methods are only documented if the class-specific implementation exists and has significant behavior that differs from the base implementation.

Table of Contents

Next: class RecordPic