asp连接远程数据库
如果我要用asp连接远程计算机中的sql数据库,语句该怎么写, 我知道远程计算机的ip 和 计算机的帐户和密码
以下是引用houjuanjie在2006-1-13 22:03:00的发言:
Provider=SQLOLEDB;User ID=sa;Password=sa;Persist Security Info=True;Initial Catalog=abc;Data Source=127.0.0.1
abc是你要连接的数据库的名称,别的就不用说了吧
Provider=SQLOLEDB;User ID=sa;Password=sa;Persist Security Info=True;Initial Catalog=abc;Data Source=127.0.0.1
abc是你要连接的数据库的名称,别的就不用说了吧
我的机器ip为192.168.0.1 写成“data source=192.168.0.1”时,提示sa登录失败
ip改为我的计算机名时,可以通过,这是为什么