Schema::getTable

(No version information available, might only be in Git)

Schema::getTableObtém tabela do esquema

Descrição

public mysql_xdevapi\Schema::getTable(string $name): mysql_xdevapi\Table

Busca um objeto Table para a tabela informada do esquema.

Parâmetros

name

Nome da tabela.

Valor Retornado

Um objeto Table.

Exemplos

Example #1 Exemplo de mysql_xdevapi\Schema::getTable()

<?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();

$schema = $session->getSchema("addressbook");
$table  = $schema->getTable("names");

$row = $table->select('name', 'age')->execute()->fetchAll();

print_r($row);
?>

O exemplo acima produzirá algo semelhante a:

Array
(
    [0] => Array
        (
            [name] => John
            [age] => 42
        )
    [1] => Array
        (
            [name] => Sam
            [age] => 33
        )
)