Home > php教程 > php手册 > body text

PHP 使用 ODBC 连接 Mysql 数据库

WBOY
Release: 2016-06-13 11:36:20
Original
1601 people have browsed it

本文主要给大家介绍如何使用PHP 通过 ODBC 连接 Mysql 数据库,关于其中的原理这里就不再多介绍了,请大家直接测试下边的代码:

Copy to Clipboard引用的内容:[www.bkjia.com] br />"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


PHP and ODBC: XHTML Example 1



$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 "";
while (odbc_fetch_row($rs))
{
$result = odbc_result($rs,"test");
echo "";
}
// 辛苦整理教程,勿恶意采集 VeryHuo_COM
odbc_close($conn);
echo "
Test
$result
";
?>

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!