无法连接到数据库服务器
当我运行时:
if (connection.State == ConnectionState.Closed) 连接.Open();
我得到以下异常:
错误 [08004] [Informix .NET 提供程序][Informix]无法连接到数据库服务器 ...
我不知道问题是什么;你能告诉我吗?
When I run:
if (connection.State == ConnectionState.Closed)
connection.Open();
I Get the the following exception:
ERROR [08004] [Informix .NET provider][Informix]Cannot connect to database server ...
I don't know what the problem is; can you tell me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 文档错误08004意味着:
因此,您的凭据可能不正确,或者存在某些 IP 限制。
According to the documentation error 08004 means:
So maybe your credentials are incorrect or some ip restrictions are in place.