Ferreteria/v0.6/clade/Sys/Data/Engine/aux/ActionRq/Admin/dbase/EngDbScList/@removed
|
Removed Code
|
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-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;
}
}