CakeFest 2024: The Official CakePHP Conference

SchemaObject::getSchema

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

SchemaObject::getSchemaGet schema object

说明

abstract mysql_xdevapi\SchemaObject::getSchema(): mysql_xdevapi\Schema

Used by other objects to retrieve a schema object.

参数

此函数没有参数。

返回值

The current Schema object.

示例

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

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

print_r($schema);

以上示例的输出类似于:

mysql_xdevapi\Schema Object
(
    [name] => addressbook
)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top