PHP Conference Japan 2024

Schema::getSession

(无版本信息可用,可能仅存在于Git中)

Schema::getSession获取模式会话

描述

public mysql_xdevapi\Schema::getSession(): mysql_xdevapi\Session

从Schema对象获取一个新的Session对象。

参数

此函数没有参数。

返回值

一个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) {
}
添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top