Session::dropSchema

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

Session::dropSchemaスキーマを削除します

説明

public mysql_xdevapi\Session::dropSchema(string $schema_name): bool

スキーマ(データベース)を削除します。

パラメータ

schema_name

削除するスキーマ

戻り値

スキーマが削除されたら true を返します。 スキーマが存在しないか、削除できない場合は false を返します。

An E_WARNING level error is generated if the schema does not exist.

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

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

$session->close();
?>
関連キーワード:  削除, スキーマ, Session, dropSchema, xdevapi, schema, string, not, generated, An