PHP 8.4.0 RC4 available for testing

Session::createSchema

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

Session::createSchemaCréer un nouveau schéma

Description

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

Créer un nouveau schéma.

Liste de paramètres

schema_name

Le nom du schéma à créer.

Valeurs de retour

Un objet Schema en cas de succès, et émet une exception en cas d'échec.

Exemples

Exemple #1 Exemple de mysql_xdevapi\Session::createSchema()

<?php
$uri
= 'mysqlx://happyuser:password@127.0.0.1:33060/';
$sess = mysql_xdevapi\getSession($uri);

try {

if (
$schema = $sess->createSchema('fruit')) {
echo
"Info: I created a schema named 'fruit'\n";
}

} catch (
Exception $e) {

echo
$e->getMessage();

}
?>

Résultat de l'exemple ci-dessus est similaire à :

Info: I created a schema named 'fruit'
add a note

User Contributed Notes

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