Example #1
0
 private function getTablesCommand()
 {
     $getTablesCommand = new GetTablesCommand();
     $getTablesCommand->setConnection($this->connection);
     return $getTablesCommand->execute();
 }
Example #2
0
 protected function getTables($schemaName)
 {
     $getTablesCommand = new GetTablesCommand();
     $getTablesCommand->setConnection($this->connection)->setSchemaName($schemaName);
     return $getTablesCommand->execute();
 }