Session::getSchemas

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

Session::getSchemasスキーマを取得する

説明

public mysql_xdevapi\Session::getSchemas(): array

セッションで利用可能な全てのスキーマを、スキーマオブジェクトとして取得します。

パラメータ

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

戻り値

セッションで利用可能な全てのスキーマを表現するオブジェクトを含んだ配列を返します。

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

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

print_r($schemas);

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

Array
(
    [0] => mysql_xdevapi\Schema Object
        (
            [name] => addressbook
        )
    [1] => mysql_xdevapi\Schema Object
        (
            [name] => information_schema
        )
    ...
add a note add a note

User Contributed Notes

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