连接另一台服务器中的sql server 2008的连接字符串

发布于 2024-11-11 10:42:24 字数 400 浏览 3 评论 0原文

我使用下面的连接字符串连接到位于另一台服务器中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

2024-11-18 10:42:25

尝试 -

Dim oConn
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "Driver={SQL Server};Server=53.90.111.22;Database=crm_user;Uid=cos_user;Pwd=1q2w3e4r5t"

Try --

Dim oConn
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "Driver={SQL Server};Server=53.90.111.22;Database=crm_user;Uid=cos_user;Pwd=1q2w3e4r5t"
没企图 2024-11-18 10:42:25

我正在使用这样的东西:

C#

"Data Source=host's ip\\SQLEXPRESS;Initial Catalog=yourddbb;User ID=youruser;Password=yourpassword"

ASP 3.0

StrConex= ""
StrConex= StrConex & "Provider=SQLOLEDB.1;Password=yourpasswd;"
StrConex= StrConex & "Persist Security Info=True;User ID=youruser;"
StrConex= StrConex & "Initial Catalog=yourddbb;Data Source=host's ip\SQLEXPRESS"

I am using something like this:

C#

"Data Source=host's ip\\SQLEXPRESS;Initial Catalog=yourddbb;User ID=youruser;Password=yourpassword"

ASP 3.0

StrConex= ""
StrConex= StrConex & "Provider=SQLOLEDB.1;Password=yourpasswd;"
StrConex= StrConex & "Persist Security Info=True;User ID=youruser;"
StrConex= StrConex & "Initial Catalog=yourddbb;Data Source=host's ip\SQLEXPRESS"
云醉月微眠 2024-11-18 10:42:25

您有两种可能性:

1 - 将连接字符串添加到您的 web.config,如本文所示: "在 ASP.NET v2.0 中使用 web.config 中的连接字符串"

2 - 将连接添加到代码隐藏:

 Dim strConnect As String=”Data Source=localhost;Initial Catalog=pubs;Integrated Security=SSPI;” 

 Dim myConnection As SqlConnection=New SqlConnection(strConnect)

 MyConnection.Open()

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 :

 Dim strConnect As String=”Data Source=localhost;Initial Catalog=pubs;Integrated Security=SSPI;” 

 Dim myConnection As SqlConnection=New SqlConnection(strConnect)

 MyConnection.Open()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文