我怎样才能收到错误消息?

时间:2012-08-14 14:07:17

标签: java oracle database-connection try-catch

我想用oracle数据库连接java。 我使用这段代码:

url = statement;
try {
    stmt = connection.createStatement();
    rset = stmt.executeQuery(url);
} catch (Exception e) {
    // what can I put here?
}

当我的语句在oracle中导致错误时,我想得到错误消息。 我怎么能这样做?

4 个答案:

答案 0 :(得分:3)

您可以使用e.getMessage(); 我相信

答案 1 :(得分:1)

简单的Google搜索显示:

  

JDBC异常处理与Java Excpetion处理非常相似,但对于JDBC,最常见的异常是java.sql.SQLException。

查看他们的示例here

祝你好运!

答案 2 :(得分:0)

尝试使用这段代码:

e.getMessage();

答案 3 :(得分:-1)

尝试使用e.getLocalizedMessage()