_php tutorial for using ODBC to connect to a database under NT IIS

Source: Internet
Author: User
Tags dsn
$connection = int Odbc_connect (string dsn, string user, string password) establishes a database connection,

$query _string = "Criteria for querying records"
Example: $query _string = "SELECT * FROM table"

The database is retrieved with $cur = int odbc_exec (int connection_id, String query_string), and the recordset is placed in the $cur variable.

Re-use while (Odbc_fetch_row ($cur)) {
$var 1=odbc_result ($cur, 1);
$var 2=odbc_result ($cur, 1);
...
}
Reads the data set $cur returned by Odbc_exec ().

Finally, odbc_close (int connection_id) Closes the connection to the database.

The Odbc_result () function is the specified field value that takes the current record.


http://www.bkjia.com/PHPjc/316264.html www.bkjia.com true http://www.bkjia.com/PHPjc/316264.html techarticle $connection = int Odbc_connect (string dsn, string user, string password) establishes a database connection $query _string = The condition for querying records such as: $query _stri ng = select * FROM table with $ ...

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