PHP Conference Japan 2024

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: 我创建了一个名为 'fruit' 的模式\n";
}

} catch (
Exception $e) {

echo
$e->getMessage();

}
?>

以上示例将输出类似以下内容

Info: I created a schema named 'fruit'
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top