Some pre-defined constants of Pdo_mysql _php Tutorial

Source: Internet
Author: User

Pdo_mysql is a mysql extension of PHP Data Objects (PDO) interface. Take a closer look at the PHP manual, but there are some interesting parameters to use, such as:

Pdo::mysql_attr_init_command (integer)
Command to execute when connecting to the MySQL server. Would automatically be re-executed when reconnecting.

When I use Pdo_mysql to connect to MySQL, I can use this parameter to automate some query. The most common use scenario is to connect MySQL using the utf-8 character set:

PLAIN TEXT
CODE:
$db = new PDO ("Mysql:dbname=dbname", "User", "password", Array (pdo::mysql_attr_init_command=> "SET NAMES UTF8"));
The code above will execute SQL immediately after connecting to MySQL:

PLAIN TEXT
CODE:
Set Namesutf8;
Author: Volcano

http://www.bkjia.com/PHPjc/486633.html www.bkjia.com true http://www.bkjia.com/PHPjc/486633.html techarticle Pdo_mysql is a mysql extension of PHP Data Objects (PDO) interface. Take a closer look at the PHP manual, but there are some interesting parameters to use, such as: Pdo::mysql_attr_init_comm ...

  • 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.