如何从 Oracle SQl 服务器获得连接
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它必须是指向您的数据库的 JDBC 连接 URL。
将括号中的部分替换为其值,例如:
http://www.jguru .com/faq/view.jsp?EID=444466
It needs to be the JDBC connection URL pointing to your database.
Replace the parts in brackets with their values, for example:
http://www.jguru.com/faq/view.jsp?EID=444466