(没有版本信息可用,可能只在 Git 中)
Table::__construct — Table 构造函数
构造一个表对象。
此函数没有参数。
示例 #1 mysql_xdevapi\Table::__construct() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
?>