findTableNames() protected method
Returns all table names in the database.
This method should be overridden by child classes in order to support this feature because the default implementation simply throws an exception.
protected array findTableNames ( $schema = '' ) | ||
---|---|---|
$schema | string |
The schema of the tables. Defaults to empty string, meaning the current or default schema. |
return | array |
All table names in the database. The names have NO schema name prefix. |
throws | yii\base\NotSupportedException |
if this method is called |
Please login to continue.