无需安装oracle客户端远程连接oracle
有没有一种方法可以从客户端 PC 连接到远程 Oracle DB,而无需在客户端上安装 Oracle?
Is there a way to connect to a remote oracle DB from a client PC without installing oracle on the client ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要下载适用于 Oracle 的 ADO.NET 驱动程序。这是分步指南。
You need to download an ADO.NET driver for Oracle. Here's a step by step guide.
您不需要安装所有 Oracle,只需安装 ODBC 驱动程序。
You don't need to install all of Oracle but only the ODBC driver.
一切都取决于远程服务器。如果远程服务器不允许远程访问数据库,那么您无论如何都无法访问它。相反,您需要构建某种 Web 服务并将该 Web 服务部署到同一远程服务器。并将网络服务调用到您的应用程序中。
该网络服务将充当数据库的本地应用程序,并将返回用代码编写的您想要的东西。如果它允许远程访问,那么上面的建议是不错的选择。
我希望,你明白了。
Everything depends upon the remote server. If the remote server is not permitting remote access to db then u cannot access it anyway.Instead u need to build some sort of webservice and deploy that web service to the same remote server. And call the web service into your app.
The web service will act as a local app to db and will return your desired things, written in code. If its allowing remote access then as adviced above are good options.
I hope, you got it.