PHP Conference Japan 2024

Session::getSchema

(没有版本信息可用,可能只在Git中)

Session::getSchema获取新的模式对象

描述

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

一个针对提供的模式名称的新 Schema 对象。

参数

schema_name

要为其获取 Schema 对象的模式(数据库)的名称。

返回值

一个 Schema 对象。

示例

示例 #1 mysql_xdevapi\Session::getSchema() 示例

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

print_r($schema);

以上示例将输出类似以下内容

mysql_xdevapi\Schema Object
(
    [name] => addressbook
)
添加注释

用户贡献的注释 1 条注释

0
jcastro at eftec dot cl
6年前
语法是

$schema = $session->getSchema( "storedb" ); // 它返回一个 Schema 对象

其中$session是一个Session对象,storedb是模式的名称。
To Top