(没有版本信息可用,可能只存在于 Git 中)
Session::getSchemas — 获取模式
此函数没有参数。
包含表示会话可用的所有模式的对象的数组。
示例 #1 mysql_xdevapi\Session::getSchemas() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schemas = $session->getSchemas();
print_r($schemas);
上面的示例将输出类似以下内容
Array ( [0] => mysql_xdevapi\Schema Object ( [name] => addressbook ) [1] => mysql_xdevapi\Schema Object ( [name] => information_schema ) ...