私はJDBCを初めて使用します.jdbcプログラムを使用してテーブル構造を表示する方法を疑っています..コードを教えてください私は試しましたが、私のコードはエラーを示しています
import java.sql.*;
public class ram {
static final String JDBC_DRIVER = "oracle.jdbc.driver.OracleDriver";
static final String DB_URL = "jdbc:oracle:thin:@192.168.1.12:1521:aftdb";
static final String USER = "system";
static final String PASS = "manager";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try{
Class.forName("oracle.jdbc.driver.OracleDriver");
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
System.out.println("Creating statement...");
stmt = conn.createStatement();
String sql;
sql = "desc emp";
ResultSet rs = stmt.executeQuery(sql);
while(rs.next()){
String emp= rs.getString("emp");
System.out.println("ID: " + emp);
}
rs.close();
stmt.close();
conn.close();
}catch(SQLException se){
se.printStackTrace();
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(stmt!=null)
stmt.close();
}catch(SQLException se2){
}// nothing we can do
try{
if(conn!=null)
conn.close();
}catch(SQLException se){
se.printStackTrace();
}
}
}
}
しかし、それはエラーを示しています。jdbcプログラムでテーブル構造を取得する方法を教えてください。