Table::__construct

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

Table::__constructTable 构造函数

描述

private mysql_xdevapi\Table::__construct()

构造一个表对象。

参数

此函数没有参数。

示例

示例 #1 mysql_xdevapi\Table::__construct() 示例

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

$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
?>
添加注释

用户贡献的注释

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