function __construct($db, $tablename, $fieldnames, $idname)
 {
     parent::__construct($db, $tablename, $fieldnames, $idname);
 }
Ejemplo n.º 2
0
 function __construct($db, $table, $fields, $idname = 'id')
 {
     parent::__construct($db, $table, $fields, $idname);
     $this->filterFieldFromInsertAndUpdate('t');
     // prevent timestamp field from being stomped on
 }