* * $config = array( * "host" => "192.168.0.11", * "dbname" => "blog", * "port" => 3306, * "username" => "sigma", * "password" => "secret" * ); * * $connection = new Phalcon\Db\Adapter\Pdo\Mysql($config); * * */ class Mysql extends \Phalcon\Db\Adapter\Pdo implements \Phalcon\Events\EventsAwareInterface, \Phalcon\Db\AdapterInterface { protected $_type; protected $_dialectType; /** * Escapes a column/table/schema name * * @param string $identifier * @return string */ public function escapeIdentifier($identifier){ } /** * Returns an array of \Phalcon\Db\Column objects describing a table * * * print_r($connection->describeColumns("posts")); ?> * * * @param string $table * @param string $schema * @return \Phalcon\Db\Column[] */ public function describeColumns($table, $schema=null){ } } }