SchemaObject::getSchema

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

SchemaObject::getSchemaスキーマオブジェクトを得る

説明

abstract mysql_xdevapi\SchemaObject::getSchema(): mysql_xdevapi\Schema

スキーマオブジェクトを取得するために、他のオブジェクトから使われます。

パラメータ

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

戻り値

現在のスキーマオブジェクトを返します。

例1 mysql_xdevapi\Session::getSchema() の例

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

print_r($schema);

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

mysql_xdevapi\Schema Object
(
    [name] => addressbook
)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top