91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP如何應用odbc技巧

發布時間:2021-10-18 17:05:44 來源:億速云 閱讀:96 作者:柒染 欄目:編程語言

PHP如何應用odbc技巧,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

當我們在應用PHP語言對ACCESS數據庫操作時,通常都會用到PHP中的odbc。下面我們就來具體認識一下PHP應用odbc是如何操作ACCESS數據庫的。

PHP應用odbc具體代碼:

  1. class odbc_db  

  2. {  

  3. var $con = null;  

  4. var $resource = null;  

  5. function __construct()  

  6. {  

  7. }  

  8. function connect($dsn = ” , 
    $user = ” , $passwd = ” , 
    $cursor_type = 0)  

  9. {  

  10. !$dsn && $this->debug(’dsn not provided!’);  

  11. $this->con = odbc_connect($dsn ,$user 
    , $passwd ,$cursor_type);  

  12. !$this->con && $this->debug(’conncet failed!’);  

  13. return $this->con;  

  14. }  

  15. function query($sql = ”)  

  16. {  

  17. $this->resource = odbc_exec($this->con , $sql);  

  18. !$this->resource && $this->debug
    (’query failed!’);  

  19. return $this->resource;  

  20. }  

  21. function fetch_array($resource = ”)  

  22. {  

  23. !$resource && $resource = $this->resource;  

  24. return odbc_fetch_array($resource);  

  25. }  

  26. function query_first($sql = ”)  

  27. {  

  28. $resource = $this->query($sql);  

  29. return odbc_fetch_array($resource);  

  30. }  

  31. function fetch_all($resource = ”)  

  32. {  

  33. !$resource && $resource = $this->resource;  

  34. $results = array();  

  35. while(false !== ($row = @odbc_fetch_
    array($resource)))  

  36. {  

  37. $results[] = $row;  

  38. }  

  39. return $results;  

  40. }  

  41. function num_rows()  

  42. {  

  43. return odbc_num_rows($this->con);  

  44. }  

  45. function affected_rows()  

  46. {  

  47. return odbc_num_rows($this->con);  

  48. }  

  49. function debug($message = ”)  

  50. {  

  51. $message .= ‘  

  52. 以下錯誤信息由ODBC 提供:’. odbc_errormsg();  

  53. exit($message);  

  54. }  

  55. function __destruct()  

  56. {  

  57. odbc_close($this->con);  

  58. }  

  59. }  

  60. ?> 

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

塔城市| 涡阳县| 泸定县| 阳城县| 金湖县| 新宁县| 广水市| 平舆县| 来安县| 延吉市| 上饶县| 同心县| 廉江市| 密云县| 治县。| 海晏县| 沭阳县| 宁夏| 根河市| 雷波县| 和龙市| 衡南县| 台东县| 湘潭县| 襄樊市| 易门县| 镇原县| 元氏县| 崇明县| 故城县| 石楼县| 班玛县| 民乐县| 慈利县| 盘锦市| 竹北市| 乐至县| 新野县| 娄烦县| 永福县| 崇礼县|