如何从 Oracle SQl 服务器获得连接

发布于 2024-10-21 20:34:21 字数 437 浏览 1 评论 0原文

我是 Oracle SQL Developer 新手。

Oracle Sql Developer 的连接语句是什么?

我的应用程序是一个基于struts的应用程序,有一个简单的登录和注册页面。我想在注册时将数据存储到数据库中,当我登录时我想检查用户是否注册。

try {
      DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
      con=DriverManager.getConnection("????","user","password");
    }
catch (Exception e){
      System.out.println(e);
    }

我想这些是连接语句。 应该用什么来代替???

让我知道我是否错了。

I am new to Oracle SQL Developer.

What are the connection statements for Oracle Sql Developer.

My application is a struts based application, With a simple login and register page. I want to store the data in to the DB when i register and when i login i want to check wether the user is registered or not.

try {
      DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
      con=DriverManager.getConnection("????","user","password");
    }
catch (Exception e){
      System.out.println(e);
    }

I guess these are the connection statements.
What should be in the place of ????

Lemme know if am wrong.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

携君以终年 2024-10-28 20:34:21

它必须是指向您的数据库的 JDBC 连接 URL。

jdbc:oracle:[driver_type]:@[server_name]:[port]:[database_name]

将括号中的部分替换为其值,例如:

jdbc:oracle:thin:@localhost:1521:your_db

http://www.jguru .com/faq/view.jsp?EID=444466

It needs to be the JDBC connection URL pointing to your database.

jdbc:oracle:[driver_type]:@[server_name]:[port]:[database_name]

Replace the parts in brackets with their values, for example:

jdbc:oracle:thin:@localhost:1521:your_db

http://www.jguru.com/faq/view.jsp?EID=444466

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