(没有版本信息可用,可能仅在 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: 我创建了一个名为 'fruit' 的模式\n";
}
} catch (Exception $e) {
echo $e->getMessage();
}
?>
以上示例将输出类似以下内容
Info: I created a schema named 'fruit'