Db\IndexInterface::getType

abstract public getType () ...

Db\Index::__set_state

public static __set_state (array $data) Restore a Phalcon\Db\Index object from export

Db\Index::getColumns

public getColumns () Index columns

Db\Index

implements Phalcon\Db\IndexInterface Source on GitHub Allows to define indexes to be used on tables. Indexes are a common way to enhance database performance. An index allows the database server to find and retrieve specific rows much faster than it could do without an index Methods public getName () Index name public getColumns () Index columns public getType () Index type public __construct (mixed $name, array $columns, [mixed $type]) Phalcon\Db\Index constructor public static __set_state (ar

Db\Exception

extends class Phalcon\Exception implements Throwable Source on GitHub Methods final private Exception __clone () inherited from Exception Clone the exception public __construct ([string $message], [int $code], [Exception $previous]) inherited from Exception Exception constructor public __wakeup () inherited from Exception ... final public string getMessage () inherited from Exception Gets the Exception message final public int getCode () inherited from Exception Gets the Exception code fin

Db\Dialect\Sqlite::tableOptions

public tableOptions (mixed $table, [mixed $schema]) Generates the SQL to describe the table creation options

Db\Dialect\Sqlite::tableExists

public tableExists (mixed $tableName, [mixed $schemaName]) Generates SQL checking for the existence of a schema.table echo $dialect->tableExists("posts", "blog"); echo $dialect->tableExists("posts");

Db\Dialect\Sqlite::viewExists

public viewExists (mixed $viewName, [mixed $schemaName]) Generates SQL checking for the existence of a schema.view

Db\Index::getName

public getName () Index name

Db\Dialect\Sqlite::listViews

public listViews ([mixed $schemaName]) Generates the SQL to list all views of a schema or user