(无版本信息可用,可能只存在于 Git 中)
SchemaObject::getSchema — 获取模式对象
此函数没有参数。
当前模式对象。
示例 #1 mysql_xdevapi\Session::getSchema() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
print_r($schema);
以上示例将输出类似于以下内容
mysql_xdevapi\Schema Object ( [name] => addressbook )