Ferreteria/v0.6/clade/Sys/Data/Engine/aux/ActionRq/Admin/dbase/EngDbScList/@removed

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | Sys‎ | Data‎ | Engine‎ | aux‎ | ActionRq‎ | Admin‎ | dbase/EngDbScList
Jump to navigation Jump to search
Removed Code

2025-09-26

Commented out yesterday:

// 2025-09-25 refactoring these traits back out of existence
trait tEngDbScList {
    protected function EngDbScListRequestClass() : string { return cEngDbScList::class; }
    protected function NewEngDbScListRequest() : RequestIface { return ($this->EngDbScListRequestClass())::FromDbOper($this->ODbOper()); }
}

2025-05-31

Commented out on 2025-03-25:

#
    // 2025-03-25 Old API
    public function AskEngine(DbConnIface $o) {
        $ar = $o->GetSchemaList();
        $nDBs = count($ar);
        echo $nDBs.' schema'.(($nDBs==1)?'':'s').' found:'.CRLF;
        foreach ($ar as $oSchema) {
            $sSchema = $oSchema->SchemaName();
            echo " - $sSchema".CRLF;
        }
    }