Web Development Starts Here…

Posts Tagged "PDO"

Managing Transaction in PDO

Posted by on Sep 3, 2010 in Object Oriented Programming, Open Source, PDO, PHP | 1 comment

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 More

prepare statements with PDO

Posted by on Aug 30, 2010 in Open Source, PDO, PHP | 0 comments

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 More

MySql Database Connection with PDO

Posted by on Aug 19, 2010 in Object Oriented Programming, PDO, PHP | 1 comment

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 More

PDO Introduction | PHP DATA OBJECT | Lightweight and Consistent interface for accessing multiple databases in PHP

Posted by on Aug 7, 2010 in PDO, PHP | 2 comments

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.

Read More