可以用在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教程有興趣的朋友有所協助。