Oracle 10g Express .NET 连接器
我想知道是否可以获得有关将 Oracle 10g Express 连接到 .NET 的任何建议?我在这里的一个线程中看到了解决方案,但似乎找不到下载链接。
我的目的是使用 Visual Studio 2010 (.NET 4.0) 连接到 Oracle 10g Express 数据库。
感谢任何建议。
I was wondering if I could get any advice on connecting to Oracle 10g Express to .NET? I saw a solution in one of the threads here, but could not seem to find a download link.
my intention is to use Visual Studio 2010 (.NET 4.0) to connect to a Oracle 10g Express database.
Appreciate any advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看server/network/admin下的文件
的凭据
您需要设置 TNSNAMES.ora 文件,该文件将具有 Express Listener.ora 文件
听众=
(描述列表=
(描述=
(地址 = (协议 = TCP)(主机 = [计算机名称])(端口 = 1521))
)
)
最后通过 cmd 检查监听器是否已启动
这应该会显示您连接到上面提到的 XE 实例。
您将需要 Oracle.DataAccess dll 来与实例通信,添加它的引用并使用查询字符串,您应该可以很好地开始
Check out the files under server/network/admin
You need to setup the TNSNAMES.ora file which would have the credentials for the Express
Listener.ora file
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = [machinename])(PORT = 1521))
)
)
And finally check if the listener is up via cmd
This should show you connecting to the XE instance mentioned above.
You will need
Oracle.DataAccess
dll to communicate with the instance, add a reference of it and with the query string you should be good to start off