PHP 8.4.0 RC3 available for testing

Session::getSchema

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

Session::getSchemaRenvoie un nouvel objet schéma

Description

public mysql_xdevapi\Session::getSchema(string $schema_name): mysql_xdevapi\Schema

Un nouvel objet Schema pour le nom de schéma fourni.

Liste de paramètres

schema_name

Le nom du schéma (base de données) pour lequel obtenir un objet Schema.

Valeurs de retour

Un objet Schema.

Exemples

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
)
add a note

User Contributed Notes 1 note

up
0
jcastro at eftec dot cl
6 years ago
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.
To Top