Managing Transaction in PDO
Transaction is very useful portion of the database operation when we are making number of queries and all the queries are depends on each other. Transaction works on this method “All or Nothing”.
Read Moreprepare statements with PDO
Many of the matured databases support the use of prepared statements. Prepares statements can be considered as a kind of compiled template for the SQL that as application wants to run, that can be customized using variable parameters.
Read MoreMySql Database Connection with PDO
PDO (PHP Data Object) is the lightweight and consistent interface for accessing the multiple databases (even of different types) through PHP. PDO uses its own exception class to handle the errors.
Read MorePDO Introduction | PHP DATA OBJECT | Lightweight and Consistent interface for accessing multiple databases in PHP
PDO (PHP Data Object) is the lightweight and consistent interface for accessing multiple databases (even of different types) in PHP.
PDO provides a data-access abstraction layer, which means without worrying about the database type you are using you can use same functions for querying the databases.








Recent Comments