Session::createSchema

(没有版本信息可用,可能只存在于 Git 中)

Session::createSchema创建新的模式

描述

public mysql_xdevapi\Session::createSchema(string $schema_name): mysql_xdevapi\Schema

创建一个新的模式。

参数

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'
添加说明

用户贡献说明

此页面没有用户贡献说明。
To Top