我在使用JDBC针对数据库运行的函数上遇到了奇怪的SQLException。
SQLException:找不到“消息”列。

我的职能是这样的:

    st = con.prepareStatement("SELECT NotificationID,UserIDFrom,UserIDTo,Message,Timestamp,isNotified FROM notification WHERE UserIDTo=? AND isNotified=?");
    st.setInt(1, _UserID);
    st.setBoolean(2, false);
    System.out.println("st is: " + st);
    rs = st.executeQuery();

我得到了这个错误,所以我在st.executeQuery()之后添加了它:

    ResultSetMetaData meta = rs.getMetaData();
    for (int index = 1; index <= meta.getColumnCount(); index++) {
        System.out.println("Column " + index + " is named " + meta.getColumnName(index));
        }

当我再次运行代码时,这就是我得到的结果:

Column 1 is named NotificationID
Column 2 is named UserIDFrom
Column 3 is named UserIDTo
Column 4 is named Message
Column 5 is named TimeStamp
Exception in thread "main" java.sql.SQLException: Column 'Message' not found.
Column 6 is named isNotified

这是我的表设计的屏幕快照,来自MySQL Workbench

和表中的数据

我真的不知道这是怎么回事...。有人可以帮忙吗?

编辑
我替换了*语句中的SELECT只是为了向我刚刚注意到的问题添加一些内容。
如果我从选择中删除Message列,那么TimeStamp列也会出现相同的错误。而且,如果我删除了这两列,那么我不会得到任何错误。

EDIT2
好的,这是我得到错误的部分,我得到了消息和时间戳:

while (rs.next()) {
        NotificationID = rs.getInt("NotificationID");
        System.out.println("NotificationID: " + NotificationID);

        SenderID = rs.getInt("UserIDFrom");
        System.out.println("SenderID: " + SenderID);
        From = findUserName(SenderID);

        try {
            body = rs.getString("Message");
            System.out.println("body: " + body);
        } catch (Exception e) {
            System.out.println("Message error: " + e);
            e.printStackTrace();
        }

        try {
            time = rs.getString("Timestamp");
            System.out.println("time: " + time);
        } catch (Exception e) {
            System.out.println("Timestamp error: " + e);
            e.printStackTrace();
        }
    }

我收到每列getString()方法的错误TimeStamp的StackTrace(Message相同):

java.sql.SQLException: Column 'TimeStamp' not found.
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1078)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920)
    at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1167)
    at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5733)
    at NotifyMe_Server.Database.getUnNotified(Database.java:444)
    at tests.Tests.main(Tests.java:39)

最佳答案

如果您遵守您的代码

try {
        time = rs.getString("Timestamp");
        System.out.println("time: " + time);
    } catch (Exception e) {
        System.out.println("Timestamp error: " + e);
        e.printStackTrace();
    }
}

您已经以这种格式使用了“Timestamp”,但是如果您按照数据库中的指定将其更改为“TimeStamp”,则希望它可以工作。

关于java - 奇怪的SQLException : Column not found,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19672412/

10-15 02:39