Schema::getCollectionAsTable
(No version information available, might only be in Git)
Schema::getCollectionAsTable — コレクションをテーブルオブジェクトとして取得する
説明
コレクションをコレクションオブジェクトではなく、テーブルオブジェクトとして取得します。
パラメータ
name
-
テーブルオブジェクトとしてインスタンス化するためのコレクション名
戻り値
コレクションに対応する mysql_xdevapi\Table オブジェクトを返します。
例
例1 mysql_xdevapi\Schema::getCollectionAsTable() の例
<?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");
$collect = $schema->createCollection("people");
$collect->add('{"name": "Fred", "age": 21, "job": "Construction"}')->execute();
$collect->add('{"name": "Wilma", "age": 23, "job": "Teacher"}')->execute();
$table = $schema->getCollectionAsTable("people");
$collection = $schema->getCollection("people");
var_dump($table);
var_dump($collection);
上の例の出力は、 たとえば以下のようになります。
object(mysql_xdevapi\Table)#4 (1) { ["name"]=> string(6) "people" } object(mysql_xdevapi\Collection)#5 (1) { ["name"]=> string(6) "people" }
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google