PHP uses ODBC to connect to the database, PHPODBC connect to the database
The example in this article describes how PHP uses ODBC to connect to a database. Share to everyone for your reference. The implementation method is as follows:
PHP and odbc:xhtml Example 1
<?php $conn = Odbc_connect ( "Driver={mysql ODBC 3.51 DRIVER}; Server=localhost;database=phpodbcdb ", " username "," password "); if (! ( $conn) { echo ")Connection to DB via ODBC failed: "; echo odbc_errormsg ($conn); echo "
\ n "; } $sql = "Select 1 as Test"; $rs = Odbc_exec ($conn, $sql); echo "
"; echo "
Test |
"; while (Odbc_fetch_row ($rs)) { $result = Odbc_result ($rs, "test"); echo "
$result |
"; } Odbc_close ($conn); echo "
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/1034538.html www.bkjia.com true http://www.bkjia.com/PHPjc/1034538.html techarticle PHP uses ODBC to connect to the database, PHPODBC connect the database This article describes how PHP uses ODBC to connect to a database. Share to everyone for your reference. The concrete implementation method is as follows: ...