update page now

Table class

(PECL mysql-xdevapi >= 8.0.11)

Introduction

Provides access to the table through INSERT/SELECT/UPDATE/DELETE statements.

Class synopsis

class mysql_xdevapi\Table implements mysql_xdevapi\SchemaObject {
/* Properties */
public $name;
/* Methods */
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
}

Properties

name

Table of Contents

add a note

User Contributed Notes

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