<%
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を使用し、そのアプリケーションuser:system
pw:systempw スキーマ ユーザー:test4、パスワード:test4
スキーマ内のテーブルの 1 つに接続しようとしています
test4、テーブル名: update_time_schedule_reader
クエリでそのコンテンツを表示することもできません
接続を確立します....
これどうやってするの?私は完全に迷っています。可能であれば、段階的な指示を提供してください。
私は本当に感謝します!