<%
String driver = "oracle.jdbc.OracleDriver";// 1. Load the driver
Class.forName(driver);
// 2. Define the connection URL
String url = "jdbc:oracle:thin:@localhost:1521:orcl"; //orcl is the SID
String myusername = "test4"; // Your DB login ID
String mypassword = "test4"; //Your Db pass
// 3. Establish the connection
Connection conn = DriverManager.getConnection(url, test4,test4);
%>
here is the code a page call display.jsp
I use oracle express, its application user:system pw:systempw schema user:test4, password:test4
I try to connect to one of the table in the schema test4, table named: update_time_schedule_reader
To display its content in a query, but I can not even establish a connection.
How can I do this? I am totally lost.
java.sql.Connection;– Jigar Joshi Dec 6 '12 at 23:20