(没有版本信息可用,可能只存在于 Git 中)
Session::createSchema — 创建新的模式
schema_name
要创建的模式的名称。
成功时返回一个 Schema 对象,失败时抛出异常。
示例 #1 mysql_xdevapi\Session::createSchema() 示例
<?php
$uri = 'mysqlx://happyuser:[email protected]:33060/';
$sess = mysql_xdevapi\getSession($uri);
try {
if ($schema = $sess->createSchema('fruit')) {
echo "Info: I created a schema named 'fruit'\n";
}
} catch (Exception $e) {
echo $e->getMessage();
}
?>
上面的示例将输出类似于以下的内容
Info: I created a schema named 'fruit'