我无法使用我的 PC IP 地址连接到数据库,但我可以使用我的 PC 名称连接到数据库。我如何修复它或者我可以在 sql server 中配置它?
那么,连接 SQL Server 的 PC Name 和 127.0.0.1 有什么区别呢?
这是我的代码不同:
mssql_connect("MYPCNAME","sa","solution") or die('Connection Failed'); //this is OK
mssql_connect("127.0.0.1","sa","solution") or die('Connection Failed'); // this is failed
我需要你的专业知识;)