(没有版本信息可用,可能只在 Git 中)
Schema::getSession — 获取模式会话
此函数没有参数。
一个 Session 对象。
示例 #1 mysql_xdevapi\Schema::getSession() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$schema = $session->getSchema("addressbook");
// ...
$newsession = $schema->getSession();
var_dump($session);
var_dump($newsession);
?>
上面的示例将输出类似于
object(mysql_xdevapi\Session)#1 (0) { } object(mysql_xdevapi\Session)#3 (0) { }