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
How can you make a connection?
What is JDBC Transaction Management and why do we need it?
What are the steps to connect to a database in java?
Why did my jdbc code throw a rollback sqlexception?
How does a file store compare with a jdbc store?
Differentiate between a statement and a preparedstatement.
What is the limitation of PreparedStatement and how to overcome it?
Explain the JDBC Architecture?
Does the JDBC-ODBC Bridge work with Microsoft J++?
Explain the difference between rowset vs. Resultset in jdbc?
When do we use execute method in java jdbc?
Result set’s index starts with 0 or 1?
What is use of connection pooling?
Where can I find ojdbc14 jar file?
What are the jdbc api components?