连接另一台服务器中的sql server 2008的连接字符串
我使用下面的连接字符串连接到位于另一台服务器中的 sqlserver 2008。 如何使用 vbscript 从 ASP 连接到它?
application("database_connectionstring_internal") = "DRIVER=SQL Server;SERVER=53.90.111.22;DATABASE=crm_cos;UID=cos_user;PASSWORD=1q2w3e4r5t"
这是我的服务器详细信息:
数据库服务器: 服务器 IP - 53.90.111.22
Sql 服务器名称 - SCD13B
用户名 - cos_user
密码 - 1q2w3e4r5t
数据库名称 - crm_user
I use the below connection string to connect to a sqlserver 2008 located in another server.
How to i connect to it from ASP using vbscript?
application("database_connectionstring_internal") = "DRIVER=SQL Server;SERVER=53.90.111.22;DATABASE=crm_cos;UID=cos_user;PASSWORD=1q2w3e4r5t"
Here are my server details :
Database server :
Server IP - 53.90.111.22
Sql server name - SCD13B
User name - cos_user
password - 1q2w3e4r5t
Database name - crm_user
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 -
Try --
我正在使用这样的东西:
C#
ASP 3.0
I am using something like this:
C#
ASP 3.0
您有两种可能性:
1 - 将连接字符串添加到您的 web.config,如本文所示: "在 ASP.NET v2.0 中使用 web.config 中的连接字符串"
2 - 将连接添加到代码隐藏:
You have two possibilities :
1 - Add connection string to your web.config as show in this post : "Using connection strings from web.config in ASP.NET v2.0"
2 -Add the connection to code-behind :