InterviewSolution
| 1. |
List Some Database Related Functions In Phalcon? |
|
Answer» Phalcon encapsulates the specific details of each database ENGINE in DIALECTS. Those provide common functions and SQL GENERATOR to the adapters. Class---Description PhalconDbDialectMysql--SQL specific DIALECT for MySQL database SYSTEM PhalconDbDialectPostgresql--SQL specific dialect for PostgreSQL database system PhalconDbDialectSqlite--SQL specific dialect for SQLite database system Phalcon encapsulates the specific details of each database engine in dialects. Those provide common functions and SQL generator to the adapters. Class---Description PhalconDbDialectMysql--SQL specific dialect for MySQL database system PhalconDbDialectPostgresql--SQL specific dialect for PostgreSQL database system PhalconDbDialectSqlite--SQL specific dialect for SQLite database system |
|