CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Reporting Security Issues
    • Privacy Policy
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Get Involved
    • Issues (Github)
    • Bakery
    • Featured Resources
    • Training
    • Meetups
    • My CakePHP
    • CakeFest
    • Newsletter
    • Linkedin
    • YouTube
    • Facebook
    • Twitter
    • Mastodon
    • Help & Support
    • Forum
    • Stack Overflow
    • IRC
    • Slack
    • Paid Support
CakePHP

C CakePHP 3.0 Red Velvet API

  • Project:
    • CakePHP
      • CakePHP
      • Authentication
      • Authorization
      • Chronos
      • Elastic Search
      • Queue
  • Version:
    • 3.0
      • 5.2
      • 5.1
      • 5.0
      • 4.6
      • 4.5
      • 4.4
      • 4.3
      • 4.2
      • 4.1
      • 4.0
      • 3.10
      • 3.9
      • 3.8
      • 3.7
      • 3.6
      • 3.5
      • 3.4
      • 3.3
      • 3.2
      • 3.1
      • 3.0
      • 2.10
      • 2.9
      • 2.8
      • 2.7
      • 2.6
      • 2.5
      • 2.4
      • 2.3
      • 2.2
      • 2.1
      • 2.0
      • 1.3
      • 1.2

Namespaces

  • Global
  • Cake
    • Auth
    • Cache
    • Collection
    • Console
    • Controller
    • Core
    • Database
      • Dialect
      • Driver
      • Exception
      • Expression
      • Log
      • Schema
      • Statement
      • Type
    • Datasource
    • Error
    • Event
    • Filesystem
    • Form
    • I18n
    • Log
    • Network
    • ORM
    • Routing
    • Shell
    • TestSuite
    • Utility
    • Validation
    • View

Class BaseSchema

Base class for schema implementations.

This class contains methods that are common across the various SQL dialects.

Abstract
Namespace: Cake\Database\Schema

Property Summary

  • $_driver protected
    Cake\Database\Driver

    The driver instance being used.

Method Summary

  • __construct() public

    Constructor

  • _convertConstraintColumns() protected

    Convert foreign key constraints references to a valid stringified list

  • _convertOnClause() protected

    Convert string on clauses to the abstract ones.

  • _foreignOnClause() protected

    Generate an ON clause for a foreign key.

  • columnSql() abstract public

    Generate the SQL fragment for a single column in a table.

  • constraintSql() abstract public

    Generate the SQL fragments for defining table constraints.

  • convertColumnDescription() abstract public

    Convert field description results into abstract schema fields.

  • convertForeignKeyDescription() abstract public

    Convert a foreign key description into constraints on the Table object.

  • convertIndexDescription() abstract public

    Convert an index description results into abstract schema indexes or constraints.

  • convertOptionsDescription() public

    Convert options data into table options.

  • createTableSql() abstract public

    Generate the SQL to create a table.

  • describeColumnSql() abstract public

    Generate the SQL to describe a table.

  • describeForeignKeySql() abstract public

    Generate the SQL to describe the foreign keys in a table.

  • describeIndexSql() abstract public

    Generate the SQL to describe the indexes in a table.

  • describeOptionsSql() public

    Generate the SQL to describe table options

  • dropTableSql() public

    Generate the SQL to drop a table.

  • indexSql() abstract public

    Generate the SQL fragment for a single index in a table.

  • listTablesSql() abstract public

    Generate the SQL to list the tables.

  • truncateTableSql() abstract public

    Generate the SQL to truncate a table.

Method Detail

__construct() ¶ public

__construct(Cake\Database\Driver $driver)

Constructor

This constructor will connect the driver so that methods like columnSql() and others will fail when the driver has not been connected.

Parameters
Cake\Database\Driver $driver

The driver to use.

_convertConstraintColumns() ¶ protected

_convertConstraintColumns(string|array $references): string

Convert foreign key constraints references to a valid stringified list

Parameters
string|array $references

The referenced columns of a foreign key constraint statement

Returns
string

_convertOnClause() ¶ protected

_convertOnClause(string $clause): string|null

Convert string on clauses to the abstract ones.

Parameters
string $clause

The on clause to convert.

Returns
string|null

_foreignOnClause() ¶ protected

_foreignOnClause(string|null $on): string

Generate an ON clause for a foreign key.

Parameters
string|null $on

The on clause

Returns
string

columnSql() ¶ abstract public

columnSql(Cake\Database\Schema\Table $table, string $name): string

Generate the SQL fragment for a single column in a table.

Parameters
Cake\Database\Schema\Table $table

The table instance the column is in.

string $name

The name of the column.

Returns
string

constraintSql() ¶ abstract public

constraintSql(Cake\Database\Schema\Table $table, string $name): string

Generate the SQL fragments for defining table constraints.

Parameters
Cake\Database\Schema\Table $table

The table instance the column is in.

string $name

The name of the column.

Returns
string

convertColumnDescription() ¶ abstract public

convertColumnDescription(Cake\Database\Schema\Table $table, array $row): void

Convert field description results into abstract schema fields.

Parameters
Cake\Database\Schema\Table $table

The table object to append fields to.

array $row

The row data from describeColumnSql.

Returns
void

convertForeignKeyDescription() ¶ abstract public

convertForeignKeyDescription(Cake\Database\Schema\Table $table, array $row): void

Convert a foreign key description into constraints on the Table object.

Parameters
Cake\Database\Schema\Table $table

The table object to append a constraint to.

array $row

The row data from describeForeignKeySql.

Returns
void

convertIndexDescription() ¶ abstract public

convertIndexDescription(Cake\Database\Schema\Table $table, array $row): void

Convert an index description results into abstract schema indexes or constraints.

Parameters
Cake\Database\Schema\Table $table

The table object to append an index or constraint to.

array $row

The row data from describeIndexSql.

Returns
void

convertOptionsDescription() ¶ public

convertOptionsDescription(Cake\Database\Schema\Table $table, array $row): void

Convert options data into table options.

Parameters
Cake\Database\Schema\Table $table

Table instance.

array $row

The row of data.

Returns
void

createTableSql() ¶ abstract public

createTableSql(Cake\Database\Schema\Table $table, array $columns, array $constraints, array $indexes): array

Generate the SQL to create a table.

Parameters
Cake\Database\Schema\Table $table

Table instance.

array $columns

The columns to go inside the table.

array $constraints

The constraints for the table.

array $indexes

The indexes for the table.

Returns
array

describeColumnSql() ¶ abstract public

describeColumnSql(string $tableName, array $config): array

Generate the SQL to describe a table.

Parameters
string $tableName

The table name to get information on.

array $config

The connection configuration.

Returns
array

describeForeignKeySql() ¶ abstract public

describeForeignKeySql(string $tableName, array $config): array

Generate the SQL to describe the foreign keys in a table.

Parameters
string $tableName

The table name to get information on.

array $config

The connection configuration.

Returns
array

describeIndexSql() ¶ abstract public

describeIndexSql(string $tableName, array $config): array

Generate the SQL to describe the indexes in a table.

Parameters
string $tableName

The table name to get information on.

array $config

The connection configuration.

Returns
array

describeOptionsSql() ¶ public

describeOptionsSql(string $tableName, array $config): array

Generate the SQL to describe table options

Parameters
string $tableName

Table name.

array $config

The connection configuration.

Returns
array

dropTableSql() ¶ public

dropTableSql(Cake\Database\Schema\Table $table): array

Generate the SQL to drop a table.

Parameters
Cake\Database\Schema\Table $table

Table instance

Returns
array

indexSql() ¶ abstract public

indexSql(Cake\Database\Schema\Table $table, string $name): string

Generate the SQL fragment for a single index in a table.

Parameters
Cake\Database\Schema\Table $table

The table object the column is in.

string $name

The name of the column.

Returns
string

listTablesSql() ¶ abstract public

listTablesSql(array $config): array

Generate the SQL to list the tables.

Parameters
array $config

The connection configuration to use for getting tables from.

Returns
array

truncateTableSql() ¶ abstract public

truncateTableSql(Cake\Database\Schema\Table $table): array

Generate the SQL to truncate a table.

Parameters
Cake\Database\Schema\Table $table

Table instance.

Returns
array

Property Detail

$_driver ¶ protected

The driver instance being used.

Type
Cake\Database\Driver
OpenHub
Pingping
Linode
  • Business Solutions
  • Showcase
  • Documentation
  • Book
  • API
  • Videos
  • Reporting Security Issues
  • Privacy Policy
  • Logos & Trademarks
  • Community
  • Get Involved
  • Issues (Github)
  • Bakery
  • Featured Resources
  • Training
  • Meetups
  • My CakePHP
  • CakeFest
  • Newsletter
  • Linkedin
  • YouTube
  • Facebook
  • Twitter
  • Mastodon
  • Help & Support
  • Forum
  • Stack Overflow
  • IRC
  • Slack
  • Paid Support

Generated using CakePHP API Docs