是否存在像WAMP这样的软件包,但是使用SQL Server而不是MySQL?我很乐意使用ASP或PHP,但PHP并不总是与SQL Server很好用,ASP也无法与WAMP一起工作......所以我对此表示怀疑。
我需要这个,因为我正在开发一个IMS,它最终将托管在一个apache服务器上,但它们需要我使用SQL Server(愚蠢......我知道)。
感谢您的帮助!
答案 0 :(得分:0)
我认为没有类似的东西。
但我建议安装一个Xampp实例: http://www.apachefriends.org/en/xampp.html
使用MSSQL包(已集成在Xampp中)连接到正在运行的SQL Server实例 http://php.net/manual/en/book.mssql.php
$myServer = "localhost";
$myUser = "your_name";
$myPass = "your_password";
$myDB = "examples";
//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't connect to SQL Server on $myServer");
//select a database to work with
$selected = mssql_select_db($myDB, $dbhandle)
or die("Couldn't open database $myDB");
//declare the SQL statement that will query the database
$query = "SELECT id, name, year ";
$query .= "FROM cars ";
$query .= "WHERE name='BMW'";
//execute the SQL query and return records
$result = mssql_query($query);