how can connection with oracle10g with java

Answer Posted / dipanshu

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.Statement;
import java.sql.ResultSet;

public class Driver4Test
{
public static void main(String[] Dipanshu)throws SQLException

try
{
//Loading the Driver Class Class.forName("oracle.jdbc.driver.OracleDriver");

// creating the Connection obj to takl to Db
Connection con = DriverManager.getConnection
("jdbc:oracle:thin:@localhost:1521:XE","USERNAME", "PASSWORD");

//create the Statement obj for sending and execute the query
Statement st=con.createStatement();

//Framing the Query with variable called sql
String sql="Select * from student";

//Sending and processing the query to DB
ResultSet rs=st.executeQuery(sql);

}
catch(Exception ex) {
System.out.println(ex.getMessage());
return null;
}
//Printing the results
while(rs.next())
{
System.out.println(rs.getInt(1)+" "+rs.getString(2)+" "+getString(3);
}
//Closing the Objects
rs.close();
st.closee();
con.close();

}

This is the perfect Jdbc Application

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the advantage of namedparameterjdbctemplate?

512


What is meant by jdbc and odbc?

493


How do I set properties for a JDBC driver and where are the properties stored?

497


What is @entity in java?

532


How the JDBC application works?

540






What does the jdbc driver interface do?

556


What is resultsetmetadata?

506


What are the different types of statements? How we can you use preparedstatement.

517


Name the types of jdbc drivers.

554


What packages are used by jdbc?

510


How to use JDBC to connect Microsoft Access?

600


Which interface handles transaction management in jdbc?

573


What are the advantages of using preparedstatement over statement?

544


Where can I find ojdbc14 jar file?

498


How does a file store compare with a jdbc store?

638