| 
 | Session::getSchemasGet the schemas Description
   public array mysql_xdevapi\Session::getSchemas() Get schema objects for all schemas available to the session. ParametersThis function has no parameters. Return ValuesAn array containing objects that represent all of the schemas available to the session. ExamplesExample #1 mysql_xdevapi\Session::getSchemas example The above example will output something similar to: 
Array
(
    [0] => mysql_xdevapi\Schema Object
        (
            [name] => addressbook
        )
    [1] => mysql_xdevapi\Schema Object
        (
            [name] => information_schema
        )
    ...
 |