Schema::getName

(无版本信息可用,可能仅存在于 Git 中)

Schema::getName获取模式名称

描述

public mysql_xdevapi\Schema::getName(): string

获取模式的名称。

参数

此函数没有参数。

返回值

连接到模式对象的模式名称,以字符串形式。

示例

示例 #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"
添加备注

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top