【问题标题】:Connect to my oracle 12c database with java in Eclipse在 Eclipse 中使用 java 连接到我的 oracle 12c 数据库
【发布时间】:2016-03-16 14:09:21
【问题描述】:

谁能告诉我我正在尝试连接到我的 oracle 12c 数据库的代码有什么问题,一旦确认我可以开始操作数据。

这是我的代码:

package Testing2;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Connection;
import java.sql.DriverManager;

public class Table6 {

    public static void main(String[] args)throws SQLException {
        // TODO Auto-generated method stub

        try{
            Class.forName("oracle.jdbc.Driver.OracleDriver");
        }
        catch(java.lang.ClassNotFoundException e)
        {
            System.err.println("ClassNotFoundException:");
            System.err.println(e.getMessage());
        }

        Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:Orcl","hr","Victor");

        PreparedStatement statement = con.prepareStatement("select * from COUNTRIES WHERE COUNTRY_ID = 'AR'");

        ResultSet result = statement.executeQuery();

        while(result.next()){
            System.out.println("Current Date from Oracle : " + result.getString("current_day"));
        }
        System.out.println("done");
        System.out.println("done!");

    }

}

这是我的堆栈跟踪:

Exception in thread "main" java.sql.SQLException: Invalid column name
    at oracle.jdbc.driver.OracleStatement.getColumnIndex(OracleStatement.java:3965)
    at oracle.jdbc.driver.InsensitiveScrollableResultSet.findColumn(InsensitiveScrollableResultSet.java:299)
    at oracle.jdbc.driver.GeneratedResultSet.getString(GeneratedResultSet.java:1460)
    at Testing2.Table6.main(Table6.java:32)

【问题讨论】:

    标签: java eclipse oracle


    【解决方案1】:

    提示在您的问题中。 线程“主”java.sql.SQLException 中的异常:列名无效

    select * from COUNTRIES WHERE COUNTRY_ID = 'AR' - 尝试从 oracle 客户端运行它,看看你会得到什么

    【讨论】:

    • 非常感谢 JSR。问题解决了。我试图同时做很多事情。
    【解决方案2】:

    同时确保查询语句正确编写。我还必须确保 jdbc.jar 在 java 构建路径库中。 这是我的代码:

    package Testing2;
    
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Connection;
    import java.sql.DriverManager;
    
    public class Table6 {
    
        public static void main(String[] args)throws SQLException {
            // TODO Auto-generated method stub
    
    
            try{
             Class.forName("oracle.jdbc.OracleDriver");
                }
                catch(java.lang.ClassNotFoundException e)
                {
                System.err.println("ClassNotFoundException:");
                System.err.println(e.getMessage());
            }
    
            Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:Orcl","hr","Victor");
    
    
            PreparedStatement statement = con.prepareStatement("select COUNTRY_ID FROM COUNTRIES");
    
            ResultSet result = statement.executeQuery();
    
            while(result.next()){
                System.out.println("All Country Id's: " +         result.getString(1));
            }
            System.out.println("done");
            System.out.println("done!");
    
        }
    
    }
    

    这是我的输出:

       All Country Id's: AR
        All Country Id's: AU
        All Country Id's: BE
        All Country Id's: BR
        All Country Id's: CA
        All Country Id's: CH
        All Country Id's: CN
        All Country Id's: DE
        All Country Id's: DK
        All Country Id's: EG
        All Country Id's: FR
        All Country Id's: IL
        All Country Id's: IN
        All Country Id's: IT
        All Country Id's: JP
        All Country Id's: KW
        All Country Id's: ML
        All Country Id's: MX
        All Country Id's: NG
        All Country Id's: NL
        All Country Id's: SG
        All Country Id's: UK
        All Country Id's: US
        All Country Id's: ZM
        All Country Id's: ZW
        done
        done!
    

    【讨论】:

      猜你喜欢
      • 2016-07-23
      • 2011-12-27
      • 2014-06-12
      • 2018-08-08
      • 1970-01-01
      • 2021-07-11
      • 2014-06-03
      • 1970-01-01
      • 2014-06-08
      相关资源
      最近更新 更多