ommedia Posted September 29, 2005 Share Posted September 29, 2005 I have PHP installed on IIS on an XP local server. The MS SQL server is on another box, and is connectable from other applications including .NET. I can't seem to get my connection to work: CODE: $cur_server = 'DNS_SERV_NAME'; $cur_user = 'sa'; $cur_pw = ''; $connection = mssql_connect($cur_server, $cur_user, $cur_pw) or die("Could not connect: "); $dbname = 'db_name'; $db = mssql_select_db($dbname , $connection) or die("Invalid Select: "); $result = mssql_query("SELECT Description FROM Powers WHERE Valid_Flag = 'Y' ORDER BY Description",$connection) or die("Invalid query: "); ERROR: Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: DNS_SERV_NAME in...... Q1: Any suggestions / references ? Q2: Additionally, with MySQL I've used . mysql_error() in my die(). Is there an equivelant or alternative error specifics function that can be used with mssql functions? Thanks, Tim Quote Link to comment https://forums.phpfreaks.com/topic/2584-php-5-xp-iis-51-ms-sql/ Share on other sites More sharing options...
Munchen Posted October 26, 2005 Share Posted October 26, 2005 How did You install Your SQL server ? As named instance or default ? Quote Link to comment https://forums.phpfreaks.com/topic/2584-php-5-xp-iis-51-ms-sql/#findComment-9150 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.