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