PHP 8.5.0 RC4 available for testing

Schema::__construct

(No version information available, might only be in Git)

Schema::__constructSchema のコンストラクタ

説明

private mysql_xdevapi\Schema::__construct()

スキーマオブジェクトは、スキーマ(データベース)への完全なアクセスを提供します。

パラメータ

この関数にはパラメータはありません。

例1 mysql_xdevapi\Schema::__construct() の例

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

$session->sql("DROP DATABASE IF EXISTS food")->execute();
$session->sql("CREATE DATABASE food")->execute();
$session->sql("CREATE TABLE food.fruit(name text, rating text)")->execute();

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

print_r($schema->gettables());
print_r($schema->getcollections());

上の例の出力は、 たとえば以下のようになります。

Array
(
 [fruit] => mysql_xdevapi\Table Object
 (
 [name] => fruit
 )
)
Array
(
 [trees] => mysql_xdevapi\Collection Object
 (
 [name] => trees
 )
)

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes

There are no user contributed notes for this page.

AltStyle によって変換されたページ (->オリジナル) /