Collection::getSchema

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

Collection::getSchema获取模式对象

说明

public mysql_xdevapi\Collection::getSchema(): Schema 对象

检索包含该集合的模式对象。

参数

此函数没有参数。

返回值

成功时为模式对象,如果无法为给定集合检索对象,则为 null

示例

示例 #1 mysql_xdevapi\Collection::getSchema() 示例

<?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");
$collection = $schema->createCollection("people");

var_dump($collection->getSchema());
?>

上面的示例将输出类似于

object(mysql_xdevapi\Schema)#9 (1) {
  ["name"]=>
  string(11) "addressbook"
}
添加备注

用户贡献的备注

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