CakeFest 2024: The Official CakePHP Conference

Table クラス

(PECL mysql-xdevapi >= 8.0.11)

はじめに

INSERT/SELECT/UPDATE/DELETE ステートメントを通じて、テーブルへのアクセスを提供します。

クラス概要

class mysql_xdevapi\Table implements mysql_xdevapi\SchemaObject {
/* プロパティ */
public $name;
/* メソッド */
public count(): int
public delete(): mysql_xdevapi\TableDelete
public existsInDatabase(): bool
public getName(): string
public getSchema(): mysql_xdevapi\Schema
public getSession(): mysql_xdevapi\Session
public insert(mixed $columns, mixed ...$more_columns): mysql_xdevapi\TableInsert
public isView(): bool
public select(mixed $columns, mixed ...$more_columns): mysql_xdevapi\TableSelect
public update(): mysql_xdevapi\TableUpdate
}

プロパティ

name

目次

add a note

User Contributed Notes

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