Insert/Update/Delete Rows Inserting Rows // Inserting data with a raw SQL statement $sql = ‘INSERT INTO ‘company'(‘name’, ‘year’) VALUES (‘tutoraspire’, 2010)’; $success…
confriguration
-
-
Phalcon Layer It powers the model layer in the framework. It is found under the directory PhalconDb. It consists of abstraction layer…
-
Phalcon Logging This method found under directory PhalconLogger. It provides logging services for application. We can login to different backend using different…
-
Phalcon Model Behaviours Behaviour is shared conducts which is used by the models to reuse the code. The ORM provides an API…
-
Phalcon Features It is the fastest framework for PHP. It is a full stack open source framework. It can create independent framework.…
-
Phalcon Model Events Models allows user to implement events when operation such as insert/update/delete is implemented to define business rules. The following…
-
Cache Cache is a class found under PhalconCache directory. It helps in accessing frequently used data at much faster rate. PhalconCache is…
-
Phalcon Model Transactions A model transaction helps to maintain the integrity of the database after the operations such as insert/delete/update/rollback etc. Transaction…
-
Phalcon Class Autoloader Loader is a class found under PhalconLoader directory. This class consists of some pre-defined rules according to rules it…
-
Phalcon Models Model consists of information or data of the application. It manipulates the data by managing the rules. It is found…