在Navicat premium上建立的SQL Server資料庫,實現用PHP串連即php串連微軟MSSQL

來源:互聯網
上載者:User
 可以用在Sybase的db-lib或者ct-lib庫,在裡面也包含了一個ODBC的庫。允許許多應用軟體串連到Sybase或者微軟的SQL伺服器;

在windows下使用FreeTDS

    什麼是FreeTDS? FreeTDS其實就是一個開源(或者可以說成自由)的C程式庫,它可以實現在Linux系統下訪問操作微軟的SQL資料庫。FreeTDS是以源碼的現實發布的,正因為是這樣,所以它幾乎可以在任何系統中進行編譯安裝。

如果你的伺服器是Windows系統, 那麼你應該使用 php_dblib.dll。(more information on Using FreeTDS for Unix.)

1:按照下面的連結來下載 php_dblib.dll 並且將其儲存到 /PHP/ext 檔案夾下面.

https://docs.moodle.org/30/en/Installing_MSSQL_for_PHP#Using_the_SQL_Server_2005_Driver_for_PHP_from_Microsoft_on_Windows

SQL Server資料庫,實現用PHP串連即php串連微軟MSSQL" />

2、在php設定檔 /PHP/php.ini 中添加:

extension=php_dblib.dll 重啟apache

3:測試:

1    php2        $link = mssql_connect('localhost', 'db_user', 'db_password');3        if(!$link) {4            echo'Could not connect';5            die('Could not connect: ' . mssql_error());6        }7        echo'Successful connection';8        mssql_close($link);9    ?>

ok,成功!!!

參考:http://www.th7.cn/Program/php/201303/129462.shtml

以上就介紹了在Navicat premium上建立的SQL Server資料庫,實現用PHP串連即php串連微軟MSSQL,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.