SQLException: Invalid Column Name…?

前端 未结 1 1892
Happy的楠姐
Happy的楠姐 2020-12-07 05:33

I have a JSP file which I am deploying within a Java Project with the help of Eclipse, Maven, and Tomcat. I\'ve got a few other JSP files almost identical to this one, thoug

相关标签:
1条回答
  • 2020-12-07 05:39

    java.sql.SQLException: Invalid column name ixPersonOpenedBy.

    The mentioned column is not returned by SELECT.

    And indeed, none of your two SELECT queries specifies that column. Fix it accordingly. E.g.

    SELECT b.ixBug, b.sTitle, b.ixPersonOpenedBy
    
    0 讨论(0)
提交回复
热议问题