如何修复“;命名管道提供程序错误:40〃;尝试打开连接时
本文关键字:连接 程序 何修复 管道 错误 | 更新日期: 2023-09-27 18:29:58
我正在尝试制作一个按钮,将查询插入Oracle数据库。但当我试图打开连接时,错误弹出:
SqlConnection sqlc = new SqlConnection(IssueTracker.Properties.Settings.Default.ConnectionString);
sqlc.Open();
在sqlc.Open();
中断,并显示消息:
Additional information: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
我使用的是Visual Studio 2015社区,并且我已经安装了ODAC。我仔细研究了别人的问题,但他们没有帮助。这让我很困惑,因为我可以用数据填充DataGridView
和comboBox
。有人知道我做错了什么吗?
我做错了,Alex Poole为我敲响了警钟。
要访问Oracle数据库,请使用OleDbConnection conn = new OleDbConnection();
从本视频中了解到:https://www.youtube.com/watch?v=JkAIiDWF0HE