Ferreteria/v0.3/class/cIOSource standard table

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Revision as of 16:43, 22 May 2022 by Woozle (talk | contribs) (8 revisions imported: moving this project here)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Page/obsolete

// PURPOSE: standard db table source with a single "ID" key
abstract class cIOSource_standard_table extends cIOSource_db_keyed {
    use tSelectable_Source_simple;
    use tInsertable_Source;
    use tUpdateable_Source;

    public function GetKeyName() { return 'ID'; }
    protected function SourceString_forSelect() // returns TableName()
    abstract protected function TableName();
}