在java中连接到oracledb
我在一家大公司工作,需要连接oracle数据库。它的设置是为了让我可以通过 DSN 连接到它,但我想直接连接到数据库。当我拥有的唯一信息是数据库名称以及用户名和密码时,我该怎么做?通过 dsn 可以正常工作。
I work in a big company and need to connect to a oracle database. It is set up so that i can connect to it through DSN, but I would like to connect to the db directly. How do i do that, when the only information I have is the name of the db and the username and password. It works fine through dsn.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认识的大多数 Java 开发人员都使用 JDBC Thin Client 进行连接。您需要用户/密码、主机名和数据库 ID,并且您应该能够连接。
Most the Java developers I know use JDBC Thin Client to connect. You need user/pass, hostname and database id and you should be able to connect.