PDO introduction to PHP

Source: Internet
Author: User
Tags ibm db2
What is PDO in PHP?

The POD (PHP Data Object) extension is added to PHP5. by default, PDO is identified in PHP6 to connect to the database. all non-PDO extensions will be removed from the extension in PHP6. This extension provides PHP built-in PDO class for accessing the database. different databases use the same method name to solve the problem of inconsistent database connections.

I configured it for development in windows.

■ PDO goals
A lightweight, clear, and convenient API is provided to unify the common features of different RDBMS libraries, but more advanced features are not excluded. PHP scripts provide optional abstract/compatibility.

■ Features of PDO:

Performance. From the very beginning, PDO learned from the success and failure of existing database expansion. Because the PDO code is brand new, we have the opportunity to design performance again to take advantage of the latest features of PHP 5. Capability. PDO is designed to provide common database functions as the basis and provide convenient access to the unique functions of RDBMS. Simple. PDO is designed to make it easy to use databases. The API does not forcibly intervene in your code and clearly shows the process of calling each function. It can be expanded during runtime. The PDO extension is modular, allowing you to load drivers at the backend of your database at runtime without re-compiling or re-installing the entire PHP program. For example, the PDO_OCI extension replaces the PDO extension to implement the Oracle database API. There are also some drivers for MySQL, PostgreSQL, ODBC, and Firebird. more drivers are still under development.


■ Install PDO
I am using the PDO extension developed in WINDOWS. if you want to install the configuration in Linux, go to other places to find it.
Version requirements:

Php5.1 and later versions are included in the program package;

Php5.0.x is downloaded to pecl.php.net and put it in your Extension Library, which is the ext folder of the PHP folder;

In the manual, versions earlier than 5.0 cannot run PDO extensions.

Configuration:
Modify your php. ini configuration file to support pdo. (php. if you do not understand ini, first make it clear that you need to modify the php code displayed by calling your phpinfo () function. ini)

Remove the semicolon before extension = php_pdo.dll, which is the annotation symbol of the php configuration file. this extension is required.

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

The databases corresponding to each extension are:

Driver name Supported databases
PDO_DBLIB FreeTDS/Microsoft SQL Server/Sybase
PDO_FIREBIRD Firebird/Interbase 6
PDO_INFORMIX IBM Informix Dynamic Server
PDO_MYSQL MySQL 3.x/ 4.x
PDO_OCI Oracle Call Interface
PDO_ODBC ODBC v3 (IBM DB2, unixODBC and win32 ODBC)
PDO_PGSQL PostgreSQL
PDO_SQLITE SQLite 3 and SQLite 2

You only need to remove the annotator ";" before the corresponding extension to which database you want to use.

■ Use PDO
Let me assume that you have installed mysql. if you haven't installed MySQL, try to install it first. mysql5.0.22 is for me, and mysql4.0.26 is for night travelers.

★Database connection:
We use the following example to analyze how PDO connects to the database,

$ Dbms = 'mysql'; // Database type: Oracle uses ODI. for developers, if they use different databases, they do not need to remember so many functions.
$ Host = 'localhost'; // database host name
$ DbName = 'test'; // database used
$ User = 'root'; // database connection username
$ Pass = ''; // password
$ Dsn = "$ dbms: host = $ host; dbname = $ dbName ";
//

Try {
$ Dbh = newPDO ($ dsn, $ user, $ pass); // initialize a PDO object, that is, create a database connection object $ dbh
Echo "connection successful
";
/* You can perform a search operation.

Foreach ($ dbh-> query ('select * from Foo') as $ row ){
Print_r ($ row); // you can use echo ($ GLOBAL); to view these values
}
*/
$ Dbh = null;
} Catch (PDOException $ e ){
Die ("Error! : ". $ E-> getMessage ()."
");
}
// By default, this is not a persistent connection. if you need a persistent connection to the database, you need to add the following parameter: array (PDO: ATTR_PERSISTENT => true:
$ Db = newPDO ($ dsn, $ user, $ pass, array (PDO: ATTR_PERSISTENT => true ));

?>


★Database query:
We have performed a query above, and we can also use the following query:

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


Because the setAttribute () method is used, place the two parameters and forcibly convert the field name to uppercase. The following lists the parameters with multiple PDO: setAttribute:

PDO: ATTR_CASE: force the column name to a format, as detailed below (second parameter ):

PDO: CASE_LOWER: The column name must be in lower case.

PDO: CASE_NATURAL: column names follow the original method

PDO: CASE_UPPER: force column names to be uppercase.

PDO: ATTR_ERRMODE: error message.

PDO: ERRMODE_SILENT: only error codes are displayed.

PDO: ERRMODE_WARNING: displays a warning error.

PDO: ERRMODE_EXCEPTION: throw an exception.

PDO: ATTR_ORACLE_NULLS (not only effective in ORACLE, but also in other databases): specifies the value of the NULL value returned by the database in php.

PDO: NULL_NATURAL: unchanged.

PDO: NULL_EMPTY_STRING: Empty string is converted toNULL.

PDO: NULL_TO_STRING: NULL is converted to an empty string.

PDO: ATTR_STRINGIFY_FETCHES: Convert numeric values to strings when fetching. Requiresbool.

PDO: ATTR_STATEMENT_CLASS: Set user-supplied statement class derived from PDOStatement. Cannot be used with persistent PDO instances. Requiresarray (string classname, array (mixed constructor_args )).

PDO: ATTR_AUTOCOMMIT (available in OCI, Firebird and MySQL): Whether to autocommit every single statement.

PDO: MYSQL_ATTR_USE_BUFFERED_QUERY (available in MySQL): Use buffered queries.

In the example, $ rs-> setFetchMode (PDO: FETCH_ASSOC); is PDOStatement: setFetchMode (), which declares the return type.
There are:
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 ()

For more information about the return type declaration (PDOStatement: method name), see the manual.

★Insert, update, and delete data,

$ Db-> exec ("delete from 'xxxx _ menu 'where mid = 43 ");


Briefly summarize the above operations:

Query operations are mainly PDO: query (), PDO: exec (), PDO: prepare ().
PDO: query () is mainly used for operations that return records, especially SELECT operations,
PDO: exec () is mainly used for operations that do not return result sets, such as INSERT, UPDATE, DELETE, and so on. it returns 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 to obtain all the record sets to one. you can use 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.



★Transactions and automatic submission

So far, you have connected to mysql through PDO. before sending a query, you should understand how PDO manages transactions. If you have never touched on a transaction before, you must first understand the four features of the transaction: Atomicity, Consistency, Isolation, and Durability ), ACID. In layman's words, any work performed in a transaction can be safely applied to databases even if it is executed in stages, when a job is submitted, it is not affected by other connections. Transactional work can be automatically revoked based on the request (assuming you have not submitted it), which makes it easier to handle errors in the script.
Transactions are usually implemented by saving up a batch of changes to make them take effect at the same time. This can greatly improve the efficiency of these updates. In other words, a transaction can make the script faster and more robust (but you need to use the transaction correctly to get this benefit ).
Unfortunately, not every Database supports transactions (Mysql5 supports transactions, I don't know about mysql4), so when the connection is opened for the first time, PDO needs to run in the so-called "auto-commit" mode. The automatic commit mode means that if the database supports transactions, each query you run has its own implicit transaction. if the database does not support transactions, no such transaction exists for each query. If you need a transaction, you must use the PDO: beginTransaction () method to start a transaction. If the underlying driver does not support transactions, a PDOException will be thrown (regardless of the error processing settings: this is always a serious error state ). In a transaction, you can use PDO: commit () or PDO: rollBack () to end the transaction, depending on whether the code running in the transaction is successful.
When the script ends, or when a connection is about to be closed, if there is an unfinished transaction, PDO will automatically roll back the transaction. This is a security measure that helps avoid inconsistencies when the script ends abnormally ?? If the transaction is not committed explicitly, perform a rollback to ensure data security, assuming there is a inconsistency somewhere.

// Example from http://www.ibm.com/developerworks/cn/db2/library/techarticles/dm-0505furlong/index.html
Try {
$ Dbh = new PDO ('odbc: sample', 'db2inst1', 'ibmdb ',
Array (PDO_ATTR_PERSISTENT => true ));
Echo "Connected \ n ";
$ Dbh-> setAttribute (PDO_ATTR_ERRMODE, PDO_ERRMODE_EXCEPTION );
$ Dbh-> beginTransaction ();
$ Dbh-> exec ("insert into staff (id, first, last) values (23, 'job', 'bloggs ')");
$ Dbh-> exec ("insert into salarychange (id, amount, changedate)
Values (23,500 00, NOW ())");
$ Dbh-> commit ();

} Catch (Exception $ e ){
$ Dbh-> rollBack ();
Echo "Failed:". $ e-> getMessage ();
}


In the preceding example, assume that we create a group of entries for a new employee. This employee has an ID number, that is, 23. In addition to entering the basic data of this person, we also need to record the employee's salary. The two updates are easy to complete, but by including the two updates in the beginTransaction () and commit () calls, you can ensure that others cannot see the changes before the changes are completed. If an error occurs, the catch block can roll back all the changes that have occurred since the beginning of the transaction and print an error message.

It is not necessary to update the transaction. You can also issue complex queries to extract data, and use that information to create more updates and queries. When a transaction is active, other persons cannot make changes during work. In fact, this is not 100% correct, but if you have never heard of a transaction before, it is not worth mentioning.

★Pre-processing statements and stored procedures

Many more mature databases support the concept of pre-processing statements. What is a pre-processing statement? You can regard the pre-processing statement as a compiled template of the SQL statement you want to run. it can be customized using variable parameters. Preprocessing statements can bring two benefits:

The query only needs to be parsed (or prepared) once, but can be executed multiple times with the same or different parameters. When the query is ready, the database will analyze, compile, and optimize the plan for executing the query. For complex queries, this process takes a long time. if you need to repeat the same query multiple times with different parameters, this process will greatly reduce the speed of the application. By using preprocessing statements, you can avoid repeated analysis, compilation, and optimization cycles. In short, preprocessing statements use fewer resources and therefore run faster. Parameters provided to the pre-processing statement do not need to be enclosed in quotation marks. The driver will process these parameters. If the application exclusively uses preprocessing statements, it can ensure that no SQL intrusion occurs. (However, if you still establish other parts of the query on untrusted input, there is still a risk ).

Preprocessing statements are so useful that PDO actually breaks the rule set in Objective 4: If the driver does not support preprocessing statements, PDO will simulate preprocessing statements.


Example of a PDO application:

$ Dbms = 'mysql'; // Database type: Oracle uses ODI. for developers, if they use different databases, they do not need to remember so many functions.

$ Host = 'localhost'; // database host name

$ DbName = 'test'; // database used

$ User = 'root'; // database connection username

$ Pass = ''; // password

$ Dsn = "$ dbms: host = $ host; dbname = $ dbName ";


ClassdbextendsPDO {
Publicfunction _ construct (){
Try {
Parent: :__ construct ("$ GLOBALS [dsn]", $ GLOBALS ['user'], $ GLOBALS ['pass']);
} Catch (PDOException $ e ){
Die ("Error:". $ e->__ toString ()."
");
}
}

Publicfinalfunctionquery ($ SQL ){
Try {
Returnparent: query ($ this-> setString ($ SQL ));
} Catch (PDOException $ e ){
Die ("Error:". $ e->__ toString ()."
");
}
}

PrivatefinalfunctionsetString ($ SQL ){
Echo "I want to handle $ SQL ";
Return $ SQL;
}
}

$ Db = newdb ();
$ Db-> setAttribute (PDO: ATTR_CASE, PDO: CASE_UPPER );
Foreach ($ db-> query ('select * from xxxx_menu ') as $ row ){
Print_r ($ row );
}
$ Db-> exec ('delete FROM 'xxxx _ menu 'where mid = 43 ');
?>

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.