(No version information available, might only be in Git)
Table::__construct — Constructeur de Table
Construit un objet table.
Cette fonction ne contient aucun paramètre.
Exemple #1 Exemple de mysql_xdevapi\Table::__construct()
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
?>