私はオラクルを初めて使用し、IntelliJ IDEA データベースブラウザを使用してデータとテーブルを表示しようとしています..
Linux コンピューターに oracle xe の基本的なインストールを行いました。次の Java コードは挿入を行い、すべてのデータを返します。
try {
//step1 load the driver class
Class.forName("oracle.jdbc.driver.OracleDriver");
//step2 create the connection object
Connection con = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1521:xe", "system", "xxx");
//step3 create the statement object
Statement stmt = con.createStatement();
//step4 execute query
Boolean ret = stmt.execute("insert into emp values (1, \'John\', 43)");
ResultSet rs = stmt.executeQuery("select * from emp");
while (rs.next())
System.out.println(rs.getInt(1) + " " + rs.getString(2) + " " + rs.getString(3));
//step5 close the connection object
con.close();
しかし、IntelliJ IDEA データベース ブラウザを使用しようとすると、XE データベースやテーブルが表示されません。しかし、同じ接続データを使用しています。
これが画面に表示されるものです
誰かがテーブルとデータをどこで探すべきか教えてください..ありがとう