Oracle 10g Express .NET 连接器

发布于 2024-10-15 03:19:28 字数 174 浏览 3 评论 0原文

我想知道是否可以获得有关将 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 技术交流群。

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

发布评论

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

评论(1

霊感 2024-10-22 03:19:28

查看server/network/admin下的文件
的凭据

XE =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = [machinename])(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = XE)
    )
  )

您需要设置 TNSNAMES.ora 文件,该文件将具有 Express Listener.ora 文件
听众=
(描述列表=
(描述=
(地址 = (协议 = TCP)(主机 = [计算机名称])(端口 = 1521))

最后通过 cmd 检查监听器是否已启动

lsnrctl status

这应该会显示您连接到上面提到的 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

XE =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = [machinename])(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = XE)
    )
  )

Listener.ora file
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = [machinename])(PORT = 1521))
)
)

And finally check if the listener is up via cmd

lsnrctl status

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

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