PHP使用ODBC连接数据库的方法

这篇文章主要介绍了PHP使用ODBC连接数据库的方法,涉及php使用ODBC操作数据库的基本技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP使用ODBC连接数据库的方法,分享给大家供大家参考,具体实现方法如下:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml: >
  4. <head>
  5. <title>PHP and ODBC: XHTML Example 1</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. </head>
  8. <body>
  9. <?php
  10. $conn = odbc_connect(
  11. "DRIVER={MySQL ODBC 3.51 Driver};Server=localhost;Database=phpodbcdb",
  12. "username", "password");
  13. if (!($conn)) {
  14. echo "<p>Connection to DB via ODBC failed: ";
  15. echo odbc_errormsg ($conn );
  16. echo "</p>\n";
  17. }
  18. $sql = "SELECT 1 as test";
  19. $rs = odbc_exec($conn,$sql);
  20. echo "<table><tr>";
  21. echo "<th>Test</th></tr>";
  22. while (odbc_fetch_row($rs))
  23. {
  24. $result = odbc_result($rs,"test");
  25. echo "<tr><td>$result</td></tr>";
  26. }
  27. odbc_close($conn);
  28. echo "</table>";
  29. ?>
  30. </body>
  31. </html>

希望本文所述对大家的php程序设计有所帮助。