(沒有版本資訊,可能只在 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");
?>