Db\Dialect\Mysql::createView

public createView (mixed $viewName, array $definition, [mixed $schemaName]) Generates SQL to create a view

Db\Dialect\Mysql::createTable

public createTable (mixed $tableName, mixed $schemaName, array $definition) Generates SQL to create a table

Db\Dialect\Mysql::addPrimaryKey

public addPrimaryKey (mixed $tableName, mixed $schemaName, Phalcon\Db\IndexInterface $index) Generates SQL to add the primary key to a table

Db\Dialect\Mysql::addIndex

public addIndex (mixed $tableName, mixed $schemaName, Phalcon\Db\IndexInterface $index) Generates SQL to add an index to a table

Db\Dialect\Mysql::addForeignKey

public addForeignKey (mixed $tableName, mixed $schemaName, Phalcon\Db\ReferenceInterface $reference) Generates SQL to add an index to a table

Db\Dialect\Mysql::addColumn

public addColumn (mixed $tableName, mixed $schemaName, Phalcon\Db\ColumnInterface $column) Generates SQL to add a column to a table

Db\Dialect\Mysql

extends abstract class Phalcon\Db\Dialect implements Phalcon\Db\DialectInterface Source on GitHub Generates database specific SQL for the MySQL RDBMS Methods public getColumnDefinition (Phalcon\Db\ColumnInterface $column) Gets the column name in MySQL public addColumn (mixed $tableName, mixed $schemaName, Phalcon\Db\ColumnInterface $column) Generates SQL to add a column to a table public modifyColumn (mixed $tableName, mixed $schemaName, Phalcon\Db\ColumnInterface $column, [Phalcon\Db\ColumnInt

Db\DialectInterface::viewExists

abstract public viewExists (mixed $viewName, [mixed $schemaName]) ...

Db\DialectInterface::tableOptions

abstract public tableOptions (mixed $table, [mixed $schema]) ...

Db\DialectInterface::tableExists

abstract public tableExists (mixed $tableName, [mixed $schemaName]) ...