getSchemaNames() public méthode

Returns all schema names in the database, except system schemas.
Since: 2.0.4
public getSchemaNames ( boolean $refresh = false ) : string[]
$refresh boolean whether to fetch the latest available schema names. If this is false, schema names fetched previously (if available) will be returned.
Résultat string[] all schema names in the database, except system schemas.
Exemple #1
0
 public function getSchemaNames($refresh = false)
 {
     return parent::getSchemaNames($refresh);
 }