Pdo connection to access database code _ PHP Tutorial

Source: Internet
Author: User
Code for connecting to the access database with pdo. Pdo connection access database tutorial code php Tutorial. ini needs to be opened: extensionphp_pdo.dllextensionphp_pdo_odbc.dll database is acc. mdb. to prevent malicious download, change to acc. phpt pdo connection access database tutorial code
// Php Tutorial. ini needs to be opened:
// Extension = php_pdo.dll
// Extension = php_pdo_odbc.dll
// The database is acc. mdb. to prevent malicious downloads, change to acc. php.

Try {
$ Db = new pdo ("odbc: driver = {microsoft access driver (*. mdb)}; dbq = ". getcwd (). "\ acc. php ", 'AAA', '123'); // The getcwd () function is used to obtain the current path.
// Echo "connectedn ";

Date_default_timezone_set ('Asia/Shanghai'); // Beijing time
$ V = "test". date ("y-m-d h: I: s"). "added content ";
$ Db-> exec ("insert into table1 (topic) values ('$ V')"); // insert
// Echo $ db-> lastinsertid (); // not supported
$ Rs = $ db-> query ("select * from table1"); // select
While ($ row = $ rs-> fetch ()){
Echo $ row [id]. "-". $ row [topic]."
";
};

} Catch (exception $ e ){
// Echo "failed:". $ e-> getmessage ();
}

Tutorial // php Tutorial. ini needs to be opened: // extension = php_pdo.dll // extension = php_pdo_odbc.dll // The database is acc. mdb. to prevent malicious downloads, change to acc. php t...

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.