public listTables ([mixed $schemaName]) List all tables in database print_r($dialect->listTables("blog"))
public getColumnDefinition (Phalcon\Db\ColumnInterface $column) Gets the column name in SQLite
public listViews ([mixed $schemaName]) Generates the SQL to list all views of a schema or user
public listIndexesSql (mixed $table, [mixed $schema], [mixed $keyName]) Generates the SQL to get query list of indexes print_r($dialect->listIndexesSql("blog"))
public dropView (mixed $viewName, [mixed $schemaName], [mixed $ifExists]) Generates SQL to drop a view
public dropColumn (mixed $tableName, mixed $schemaName, mixed $columnName) Generates SQL to delete a column from a table
public dropPrimaryKey (mixed $tableName, mixed $schemaName) Generates SQL to delete primary key from a table
public dropTable (mixed $tableName, [mixed $schemaName], [mixed $ifExists]) Generates SQL to drop a table
public dropForeignKey (mixed $tableName, mixed $schemaName, mixed $referenceName) Generates SQL to delete a foreign key from a table
public dropIndex (mixed $tableName, mixed $schemaName, mixed $indexName) Generates SQL to delete an index from a table
Page 290 of 382