PHP Database call class call instance database settings PHP array insert database PHP Firebird database ph

Source: Internet
Author: User
Tags firebird database php database
 
 Config ("dns=aaa;uid=sa;pwd=sa;dbname=test");//3. Select Database $dbname = $db->select_db ("test"),//4. Set Allow Debug $db->debug = TRUE;//5. Executes a SQL statement that does not return a result $db->execute ("INSERT into test01 (name) values (' This is a test! ')"); /$db->exec ("");//6. Executes a SQL statement that returns a result $rs = $db->query ("SELECT * from test01"),//7. Display results as row echo "
Display result set in row mode
while ($r = $db->fetch_row ($rs)) {echo $r [0]. ":". $r [1]. "
";} 8. Display the result in array mode $rs2 = $db->query ("SELECT * from test01"); echo "
Display result set in array mode
while ($r = $db->fetch_array ($rs 2)) {echo $r ["id"]. ":". $r ["Name"]. "
";} X. Release $db->db_close ();? >

The above describes the PHP database call class invocation instance, including the database, PHP content, I hope that the PHP tutorial interested in a friend helpful.

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