Here is the code which i am trying- ORACLE driver is loaded successfully but getting in get connection that statement-
public class OracelConn {
public static void main(String[] args) throws Exception {
try {
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
} catch (ClassNotFoundException e) {
System.out.println("Please include Classpath Where your ORACLE Driver is located");
e.printStackTrace();
return;
}
System.out.println("ORACLE driver is loaded successfully");
Connectioncon=DriverManager.getConnection( "jdbc:oracle:thin:or0132p.exg.com:1521:OP0132.exg.com", "wsteam", "wsteam");
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery("select TC_ORDER_ID from orders where tc_order_id='0296906379'");
while (rs.next())
System.out.println(rs.getString("TC_ORDER_ID"));
con.close();
} catch (Exception e) {
System.out.println(e);
}
}
}