update page now

Die Klasse Table

(PECL mysql-xdevapi >= 8.0.11)

Einführung

Ermöglicht den Zugriff auf eine Tabelle durch INSERT/SELECT/UPDATE/DELETE-Anweisungen.

Klassenbeschreibung

class mysql_xdevapi\Table implements mysql_xdevapi\SchemaObject {
/* Eigenschaften */
public $name;
/* Methoden */
public function count(): int
public function delete(): mysql_xdevapi\TableDelete
public function existsInDatabase(): bool
public function getName(): string
public function getSchema(): mysql_xdevapi\Schema
public function getSession(): mysql_xdevapi\Session
public function insert(mixed $columns, mixed ...$more_columns): mysql_xdevapi\TableInsert
public function isView(): bool
public function select(mixed $columns, mixed ...$more_columns): mysql_xdevapi\TableSelect
public function update(): mysql_xdevapi\TableUpdate
}

Eigenschaften

name

Inhaltsverzeichnis

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top