Schema::getCollection

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

Schema::getCollection从模式获取集合

描述

public mysql_xdevapi\Schema::getCollection(string $name): mysql_xdevapi\Collection

从模式获取集合。

参数

name

要检索的集合名称。

返回值

所选集合的 Collection 对象。

示例

示例 #1 mysql_xdevapi\Schema::getCollection() 示例

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$session->sql("DROP DATABASE IF EXISTS food")->execute();
$session->sql("CREATE DATABASE food")->execute();

$schema = $session->getSchema("food");
$schema->createCollection("trees");

// ...

$trees = $schema->getCollection("trees");

var_dump($trees);

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

object(mysql_xdevapi\Collection)#3 (1) {
  ["name"]=>
  string(5) "trees"
}
添加说明

用户贡献的说明

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