(无版本信息可用,可能仅在 Git 中)
Schema::getName — 获取模式名称
此函数没有参数。
连接到模式对象的模式名称,作为字符串。
示例 #1 mysql_xdevapi\Schema::getName() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$schema = $session->getSchema("addressbook");
// ...
var_dump($schema->getName());
?>
以上示例将输出类似以下内容
string(11) "addressbook"