无法连接到远程 MS SQL Server 数据库
我内部有一个 MS SQL Server 数据库(但在不同的网络上),我试图通过冷聚变连接到该数据库。但是我不断收到此错误:“找不到数据源。”
- 启用远程连接,包括 tcpip。
- 账户名正确。我可以通过测试登录,没有任何问题。
这是我的代码:
<cfquery
name="getIT"
datasource="RemoteServerName_OR_ipAddress.DATABASE_NAME.dbo"
username="test"
password="test"
>
I have a MS SQL Server Database in house (but on a different network) that I am trying to connect to via cold fusion. However I keep getting this error: "Datasource could not be found."
- Remote connections are enabled including tcpip.
- Account name is correct. I can log in via test without any problems.
Here is my code:
<cfquery
name="getIT"
datasource="RemoteServerName_OR_ipAddress.DATABASE_NAME.dbo"
username="test"
password="test"
>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来您需要在 Coldfusion Administrator 中设置数据源。
http://www.quackit.com/coldfusion/tutorial/coldfusion_datasource.cfm
It looks like you need to set up the datasource in the Coldfusion Administrator.
http://www.quackit.com/coldfusion/tutorial/coldfusion_datasource.cfm
您需要首先在 ColdFusion Administrator 中设置数据源,然后使用数据源名称 - 请参阅文档 添加数据源
You need to first set up the datasource in ColdFusion Administrator, then use the datasource name - see the documentation adding data sources