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 — Renvoie un nouvel objet schéma
Un nouvel objet Schema pour le nom de schéma fourni.
schema_name
Le nom du schéma (base de données) pour lequel obtenir un objet Schema.
Un objet Schema.
Exemple #1 Exemple de mysql_xdevapi\Session::getSchema()
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
print_r($schema);
Résultat de l'exemple ci-dessus est similaire à :
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.