The syntaxis is
$schema = $session->getSchema( "storedb" ); // it returns a Schema object
Where $session is a Session object and storedb is the name of the schema.
(No version information available, might only be in Git)
Session::getSchema — Ruft ein neues Schema-Objekt ab
Ruft ein neues Schema-Objekt für das angegebene Schema ab.
schema_name
Der Name des Schemas (Datenbank), für das ein Schema-Objekt abgerufen werden soll.
Gibt ein Schema-Objekt zurück.
Beispiel #1 mysql_xdevapi\Session::getSchema()-Beispiel
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
print_r($schema);
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
mysql_xdevapi\Schema Object ( [name] => addressbook )
The syntaxis is
$schema = $session->getSchema( "storedb" ); // it returns a Schema object
Where $session is a Session object and storedb is the name of the schema.