(无版本信息可用,可能仅在 Git 中)
Session::dropSchema — 删除模式
schema_name
要删除的模式的名称。
示例 #1 mysql_xdevapi\Session::dropSchema() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->dropSchema("addressbook");
$session->close();
?>