Phppdo usage and understanding (PDO database abstract class PHPDataObject)

Source: Internet
Author: User
Tags php database
What is PDO? Pdo is a simple php Data processing object in PHPDataObjects. It has released the php database connection layer (pdo) in php5.1. In the future, php6.0 will enable pdo by default. pdo supports various databases. You only need to change the driver, if you want to know how to connect pdo to various databases, you can view the pdo in the php manual. Today we will introduce pd

What is PDO? Pdo is a simple PHP Data Objects thinking for php Data Processing Objects. In php5.1, the php database connection layer (pdo) has been released. In the future, php6.0 will enable pdo by default. pdo supports various databases, you just need to change the driver. If you want to know how to connect to various databases, you can view the pdo articles in the php manual. Today we will introduce the pd

What is PDO?
Pdo is a simple PHP Data Objects thinking for php Data Processing Objects. In php5.1, the php database connection layer (pdo) has been released. In the future, php6.0 will enable pdo by default. pdo supports various databases, you only need to change the driver. You can view how pdo connects to various databases. Php ManualThis topic describes how to connect to common MysqlDatabase.
How does PDO connect to the Mysql database?
First, the system provides the pdo class, so we will instantiate it.

Try {
$ Pdo = new PDO ("mysql: host = localhost; dbname = xsphpdb", "root", "123456 ");
} Catch (PDOException $ e ){
Echo "Database Connection Failed:". $ e-> getMessage (); // if the connection fails, an exception is thrown.
Exit;
}
// Execute the SQL statement exec () query () prepare ()
// A query () with a result set. Execute the select statement.
// Exec () is used to execute update, delete insert, and other statements that affect the number of rows.
// Exec () returns the number of affected rows
Echo "affected rows ". $ pdo-> exec ("insert into shops (name1, price, num, desn) values ('A', '12. 1 ', '10', 'good ')");
// If the insert operation is successful, output: the number of affected rows is 1.
// You can set the error report mode to either display the error code errorCode () or the error message errorInfo () as an array.
$ Affected_row = $ pdo-> exec ("insert into shops (name1, price, num, desn) values ('A', '12. 1 ', '10', 'good ')");
If (! $ Affected_row ){
Echo $ pdo-> errorCode ().'
';
Print_r ($ pdo-> errorInfo ());
} Else {
Echo 'insert successful! ';
}
?>

How to Use pdo to connect to mysql is so simple, generally try... catch

-------------

[What is PDO]

PDO is a major new feature of PHP 5, because php4/php3 before PHP 5 was a bunch of database extensions to connect to and process various databases, php_mysql.dll, php_pgsql.dll, php_mssql.dll, php_sqlite.dll, and other extensions to connect to MySQL, PostgreSQL, ms SQL Server, and SQLite. Similarly, we must use ADOdb, PEAR: DB, PHPlib :: database abstract classes such as DB are very cumbersome and inefficient to help us. After all, how can we directly use C/C ++ to write php code with a high scaling slope? Therefore, the emergence of PDO is inevitable. you should accept it with a calm learning attitude. Maybe you will find it can reduce your efforts.

[Install PDO]

I am on Windows XP SP2, so the whole process is performed on Windows. For Linux/FreeBSD and other platforms, please find the information to set and install.
My PHP version is 5.1.4 and I already have the php_pdo.dll extension, but I need to set it up a little before it can be used.

Open c: \ windows \ php. ini, which is my PHP configuration file. Find the following line:
Extension_dir
This is the directory of our extension. My PHP 5 extension is in: C: \ php5 \ ext, so I will change this line:

Extension_dir = "C:/php5/ext"


Then find the following link under php. ini:

;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions;
;;;;;;;;;;;;;;;;;;;;;;


Below are a bunch of things similar to extension = php_mbstring.dll. Here is the PHP extension loading configuration. We will add our PDO extension at the end:

Extension = php_pdo.dll
Extension = php_pdo_mysql.dll
Extension = php_pdo_pgsql.dll
Extension = php_pdo_sqlite.dll
Extension = php_pdo_mssql.dll
Extension = php_pdo_odbc.dll
Extension = php_pdo_firebird.dll
; Extension = php_pdo_oci8.dll


All kinds of PDO drivers can be added, but the php_pdo_oci8.dll in the future will be commented out using semicolons because I have not installed the Oralce database. Then restart our Web server, IIS/Apache, and I use IIS. Hey hey, the table despise me. It's easy on Windows.
After the restart, write a phpinfo. php file under the document directory of our Web server, and add the following:


Phpinfo ();
?>


Then open our lovely Browser: IE/FireFox. I use FireFox 2.0. I just downloaded it. It's so nice. I'm not afraid of rogue software. Haha.
Enter:Http: // localhost/phpinfo. phpIf the path of your page is inconsistent, enter the path on your own.
In the output content, if you can see smoothly:

PDO
PDO support enabled
PDO drivers mysql, pgsql, sqlite, mssql, odbc, firebird


The following describes various drivers,
PDO_Firebird, pdo_mssql, pdo_mysql, PDO_ODBC, pdo_pgsql, pdo_sqlite

Congratulations, you have successfully installed it. Otherwise, Please carefully check the above steps.

[Knife test]

I use MySQL 4.0.26, but I personally recommend that you use MySQL 4.1.x or MySQL 5.0.x because there are many interesting things worth learning. Here, we need to connect to my MySQL 4.0. If you have not installed MySQL, install it on your own. We have created MySQL and added table foo in the test Library, including four fields: id, name, gender, and time.

We started to construct the first PDO application and create a pdo. php file under the Web document directory:


$ Dsn = "mysql: host = localhost; dbname = test ";
$ Db = new PDO ($ dsn, 'root ','');
$ Count = $ db-> exec ("insert into foo SET name = 'heiyeluren', gender = 'male', time = NOW ()");
Echo $ count;
$ Db = null;
?>


Don't understand what it means, let's talk about it slowly. This line:
$ Dsn = "mysql: host = localhost; dbname = test ";
It is to construct our DSN (Data Source). Let's see the following information: the database type is mysql, the host address is localhost, and the database name is test. The data source construction methods for different databases are different.

$ Db = new PDO ($ dsn, 'root ','');
Initialize a PDO object. The first parameter of the constructor is our data source, the second parameter is the user who connects to the database server, and the third parameter is the password. We cannot guarantee that the connection is successful. We will talk about exceptions later. Here we will consider it successful.

$ Count = $ db-> exec ("insert into foo SET name = 'heiyeluren', gender = 'male', time = NOW ()");
Echo $ count;
Call the successfully connected PDO object to execute a query. This query is an operation to insert a record. Using the PDO: exec () method, a result that affects the record is returned, so we output this result. Finally, you need to end the object Resource:
$ Db = null;

By default, this is not a persistent connection. If you need a persistent connection to the database, you must add the following parameter: array (PDO: ATTR_PERSISTENT => true:
$ Db = new PDO ($ dsn, 'root', '', array (PDO: ATTR_PERSISTENT => true ));

One operation is so simple. It may not be much different from the previous one. It is somewhat similar to ADOdb.

[Continue]

If we want to extract data, we should use the data acquisition function. (The $ db used below is all the connected objects above)

Foreach ($ db-> query ("SELECT * FROM foo ")){
Print_r ($ row );
}
?>



We can also use this method:

$ Rs = $ db-> query ("SELECT * FROM foo ");
While ($ row = $ rs-> fetch ()){
Print_r ($ row );
}
?>



If you want to get all the data to the array at one time, you can do this:

$ Rs = $ db-> query ("SELECT * FROM foo ");
$ Result_arr = $ rs-> fetchAll ();
Print_r ($ result_arr );
?>



Output:

Array
(
[0] => Array
(
[Id] => 1
[0] => 1
[Name] => heiyeluren
[1] => heiyeluren
[Gender] => male
[2] => male
[Time] => 23:14:23
[3] => 23:14:23
)
}



We can see that the record, the number index and the associated index both exist, which is a waste of resources. We only need to associate the index:

$ Db-> setAttribute (PDO: ATTR_CASE, PDO: CASE_UPPER );
$ Rs = $ db-> query ("SELECT * FROM foo ");
$ Rs-> setFetchMode (PDO: FETCH_ASSOC );
$ Result_arr = $ rs-> fetchAll ();
Print_r ($ result_arr );
?>



According to the code above, the setAttribute () method is to set some attributes. The main attributes include PDO: ATTR_CASE, PDO: ATTR_ERRMODE, etc. here we need to set PDO: ATTR_CASE, when we use the associated index to retrieve a dataset, the associated index is in upper or lower case. There are several options:

PDO: CASE_LOWER -- force column name to be lowercase
PDO: CASE_NATURAL -- column names follow the original method
PDO: CASE_UPPER -- force column name to uppercase

We use the setFetchMode method to set the type of the return value for the result set. The same types include:

PDO: FETCH_ASSOC -- join array form
PDO: FETCH_NUM -- numeric index array format
PDO: FETCH_BOTH -- both arrays are available, which is the default
PDO: FETCH_OBJ -- according to the object form, similar to the previous mysql_fetch_object ()

Of course, we generally use PDO: FETCH_ASSOC. For more information about the usage, see the reference manual for other obtaining types.


In addition to the above method of getting data, there are also:

$ Rs = $ db-> prepare ("SELECT * FROM foo ");
$ Rs-> execute ();
While ($ row = $ rs-> fetch ()){
Print_r ($ row );
}
?>



Actually, it's almost the same. If you want to obtain the results of a field in a specified record, you can use PDOStatement: fetchColumn ():

$ Rs = $ db-> query ("select count (*) FROM foo ");
$ Col = $ rs-> fetchColumn ();
Echo $ col;
?>


FetchColumn () is generally used for count statistics or some records that only need a single field are well-performed.


Briefly summarize the above operations:

Query operations are mainly PDO: query (), PDO: exec (), PDO: prepare (). PDO: query () is mainly used for operations that return record results, especially SELECT operations. PDO: exec () is mainly used for operations that return no result set, for example, INSERT, UPDATE, DELETE, and other operations. The result returned by this operation is the number of columns affected by the current operation. PDO: prepare () is mainly used for preprocessing. You need to use $ rs-> execute () to execute the SQL statements in the preprocessing. This method can bind parameters and has powerful functions, this document is not a simple description. You can refer to the Manual and other documents.

To obtain a result set, perform the following operations: PDOStatement: fetchColumn (), PDOStatement: fetch (), and PDOStatement: fetchALL (). PDOStatement: fetchColumn () is a field of the first record specified in the result. The default value is the first field. PDOStatement: fetch () is used to obtain a record. PDOStatement: fetchAll () is used to obtain all the record sets to one. The obtained results can be obtained through PDOStatement :: setFetchMode to set the type of the desired result set.

There are also two peripheral operations: PDO: lastInsertId () and PDOStatement: rowCount (). PDO: lastInsertId () is the last insert operation, and the primary key column type is the last auto-increment ID of auto-increment. PDOStatement: rowCount () is the result set affected by the DELETE, INSERT, and UPDATE operations on PDO: query () and PDO: prepare :: the exec () method and SELECT operation are invalid.

[Error handling]

What if an error occurs in the program? Here we describe the error information and Exception Handling of the PDO class.

1. object-oriented approach

First, let's take a look at the handling of connection errors, and use the object-oriented method to handle them:

Try {
$ Db = new PDO ('mysql: host = localhost; dbname = test', $ user, $ pass );
$ Db = null;
} Catch (PDOException $ e ){
Print "Error:". $ e-> getMessage ()."
";
Die ();
}
?>


Here we use the object-oriented Exception Handling feature of PHP 5. If there is an exception in it, we will initialize and call PDOException to initialize an exception class.
The property structure of the PDOException class:

Class PDOException extends Exception
{
Public $ errorInfo = null; // error message, which can be accessed by calling PDO: errorInfo () or PDOStatement: errorInfo ()
Protected $ message; // Exception information. You can try Exception: getMessage () to access
Protected $ code; // SQL status error code, which can be accessed using Exception: getCode ()
}
?>


This exception handling class is integrated with the PHP 5 built-in exception handling class. Let's take a look at the PHP 5 built-in exception handling class structure:

Class Exception
{
// Attributes
Protected $ message = 'unknown exception'; // exception information
Protected $ code = 0; // custom Exception code
Protected $ file; // file name with an exception
Protected $ line; // The code line number with an exception

// Method
Final function getMessage (); // returns exception information
Final function getCode (); // returns the Exception Code
Final function getFile (); // returns the file name with an exception
Final function getLine (); // return the code line number in which an exception occurs.
Final function getTrace (); // backtrace () array
Final function getTraceAsString (); // getTrace () information formatted as a string
}
?>


Correspondingly, you can call getFile () and getLine () in the code to locate the error, making debugging easier.


2. process-oriented methods
First look at the Code:

$ Db = new PDO ('mysql: host = localhost; dbname = test', $ user, $ pass );
$ Rs = $ db-> query ("SELECT aa, bb, cc FROM foo ");
If ($ db-> errorCode ()! = '000000 '){
Print_r ($ db-> errorInfo ());
Exit;
}
$ Arr = $ rs-> fetchAll ();
Print_r ($ arr );
$ Db = null;
?>



The PDO and PDOStatement objects have the errorCode () and errorInfo () methods. If there are no errors, errorCode () returns: 00000. Otherwise, some error codes are returned. An array returned by errorInfo (), including the PHP-defined error code and MySQL error code and error information. The array structure is as follows:

Array
(
[0] => 42S22
[1] => 1054.
[2] => Unknown column 'aaa' in 'field list'
)

After each query, the results of errorCode () are the latest, so we can easily control the display of error information.

[Summary]

From the above usage, we can see that the PDO function is really powerful, and there are some other features that I have not mentioned, such as binding parameters, preprocessing, stored procedures, transaction processing, and so on. In addition, there are also different data expansion DSN structures. Oracle databases have many special things that need to be learned and understood in depth. This article is just a simple description of some basic knowledge, A simple understanding of PDO.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.