public string listViews ([string $schemaName]) Generates the SQL to list all views of a schema or user
public listTables ([mixed $schemaName]) List all tables in database print_r($dialect->listTables("blog"))
public describeReferences (mixed $table, [mixed $schema]) Generates SQL to query foreign keys on a table
public createTable (mixed $tableName, mixed $schemaName, array $definition) Generates SQL to create a table
public createView (mixed $viewName, array $definition, [mixed $schemaName]) Generates SQL to create a view
public dropForeignKey (mixed $tableName, mixed $schemaName, mixed $referenceName) Generates SQL to delete a foreign key from a table
public describeIndexes (mixed $table, [mixed $schema]) Generates SQL to query indexes on a table
public describeColumns (mixed $table, [mixed $schema]) Generates SQL describing a table print_r($dialect->describeColumns("posts"));
public dropColumn (mixed $tableName, mixed $schemaName, mixed $columnName) Generates SQL to delete a column from a table
public addIndex (mixed $tableName, mixed $schemaName, Phalcon\Db\IndexInterface $index) Generates SQL to add an index to a table
Page 293 of 382