<%
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);
%>
这是页面调用display.jsp的代码我使用oracle express,它的应用程序用户:系统
密码:systempw 模式用户:test4,密码:test4
我尝试连接到架构中的表之一
test4,表名为:update_time_schedule_reader
在查询中显示其内容,但我什至不能
建立连接....
我怎样才能做到这一点?我完全迷路了。如果可能,请提供分步说明。
我将不胜感激!