InterviewSolution
Saved Bookmarks
| 1. |
What is PHQL in Phalcon? |
|
Answer» PHQL is a HIGH-level, object-oriented QUERY LANGUAGE similar to SQL. Phalcon provides a parser written in C that translates syntax into RDBMS. This in-memory parser uses the same technology as SQLite, which is thread-safe, prevents SQL INJECTION and consumes very less memory, thus giving high PERFORMANCE. |
|