PHP Connect to SQLite

Source: Internet
Author: User

such a simple thing must let online a bunch of so-called tutorial to get confused, the harm I toss half a day! Write a note for yourself.  with PDO (PDO support database porting, if your deployment will have multiple databases in the future, then use it.) PDO is a C design and performs more efficiently. He has encapsulated the extension library component for PHP. Run fast, high efficiency ) to connect SQLite, Make sure that the PHP version supports the extension (I'm using PHP 5.3.6).  check that PDO and Pdo_sqlite are enabled in the php.ini.
Remove the previous semicolon comment open

extension=php_pdo.dll
extension=php_pdo_sqlite.dll

 OK, test the connection: <?php $db = new PDO ("sqlite:./mydb.sqlite"); //Pay attention to the path format of the Scarlet Letter section, this will error: Newpdo (' mydb.sqlite '); if ($db) {echo ' Connectok ';}else{echo ' Connectbad ';} foreach ($db->query ("select name from Test;") As$row){echo "$row [0]";} ?>  

That ' sall~

Related Article

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.