php8.5
Home/ Manual/ mysql_xdevapi / schema/ Schema::getTables

Schema::getTables

PHP function Edit on GitHub ✎

Get schema tables

Description

mysql_xdevapi\Schema::getTables(): array

Func

Parameters Parameters

Return Values

Array of all tables in this schema, where each array element value is a Table object with the table name as the key.

Examples

mysql_xdevapi\Schema::getTables() example

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

$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();

$session->sql("CREATE TABLE addressbook.names(name text, age int)")->execute();
$session->sql("INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)")->execute();

$session->sql("CREATE TABLE addressbook.cities(name text, population int)")->execute();
$session->sql("INSERT INTO addressbook.names values ('Portland', 639863), ('Seattle', 704352)")->execute();

$schema = $session->getSchema("addressbook");
$tables = $schema->getTables();

var_dump($tables);
?>

The above example will output something similar to:

output
array(2) {
  ["cities"]=>
  object(mysql_xdevapi\Table)#3 (1) {
    ["name"]=>
    string(6) "cities"
  }

  ["names"]=>
  object(mysql_xdevapi\Table)#4 (1) {
    ["name"]=>
    string(5) "names"
  }
}

Source: reference/mysql_xdevapi/mysql_xdevapi/schema/gettables.xml · from the official PHP manual (php/doc-en)