本文主要给大家介绍如何使用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 "Test |
";
while (odbc_fetch_row($rs))
{
$result = odbc_result($rs,"test");
echo "$result |
";
}
// 辛苦整理教程,勿恶意采集 VeryHuo_COM
odbc_close($conn);
echo "
";
?>
Statement: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