语法是
$schema = $session->getSchema( "storedb" ); // 它返回一个 Schema 对象
其中 $session 是一个 Session 对象,storedb 是模式的名称。
(没有版本信息可用,可能只在 Git 中)
Session::getSchema — 获取新的模式对象
为提供的模式名称创建一个新的 Schema 对象。
schema_name
要为其获取 Schema 对象的模式(数据库)名称。
一个 Schema 对象。
示例 #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 )
语法是
$schema = $session->getSchema( "storedb" ); // 它返回一个 Schema 对象
其中 $session 是一个 Session 对象,storedb 是模式的名称。