linux下用php串連sqlserver解決辦法

來源:互聯網
上載者:User
server|sqlserver|解決 步驟:
第一步:編譯並安裝freetds:
cd /tmp/
tar xzf freetds-*.tgz
cd freetds-*/
./configure --prefix=/usr/local/freetds
gmake
gmake install


第二步:編譯並安裝php4
./configure --with-mysql --with-sybase=/usr/local/freetds ....(後面的參數根據各自的需要不一而同)
#例子(我的編譯參數): ./configure --prefix=/usr/local/php --with-mysql --with-apxs2=/usr/local/apache/bin/apxs --with-zlib --with-jpeg-dir=/usr --with-png --with-freetype --with-ttf --enable-gd-native-ttf --with-gd --enable-sockets --enable-dio --with-sybase=/usr/local/freetds --with-dom
make
make install


第三步:配置freetds
vim /usr/local/freetds/etc/freetds.conf
具體配置見該檔案中的說明
例:
[MyServer2k]
host = 192.168.0.1
port = 1433
tds version = 8.0
並且可以把不用的JDBC區間注釋掉


第四步:配置php.ini檔案
修改相關的mssql區間配置,預設可以不用修改


第五步:測試
mssql_connect("192.168.0.1:1433","sa","");
mssql_select_db('testdb');
$sql = "SELECT * FROM test_table where condition = '條件';";
$result = mssql_query($sql);
$row = mssql_fetch_array($result);
print_r($row);
?>
不出意外的話,你將看到你期望的結果.

以上步驟在: Redhat 9.0, Apache 2.0.52, PHP 4.3.11 環境下通過.


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.