Hi Naga,
I got ur email ID from
Java ranch .com. Iam facing problem to connect
JDBC in Oracle database.
The Code is given below. It is complied with out error . when I try to excute it gives error :
java.lang.ClassNotFoundException: oracle.jdbc.oracle.OracleDriver.
could u tell me how can I fix it.
Code for program:
import java.awt.*;
import java.sql.*;
import java.util.*;
import java.math.*;
import java.awt.event.*;
import java.io.*;
public class MakingAStatement
{
public static void main(
String[] args)
{
try
{
Class.forName("oracle.jdbc.oracle.OracleDriver") ;
Connection con = DriverManager.getConnection(
"jdbc
racle:thin:@meenuanand1:1521:ed05"
,"scott","tiger");
Statement myStatement = con.createStatement();
ResultSet authorResults = myStatement.executeQuery("select cFirst_Name from registration");
}
catch(ClassNotFoundException cnfe)
{
System.out.println(cnfe);
}
catch(SQLException sqle)
{
System.out.println(sqle);
}
}
}