PreparedStatement codePull = (PreparedStatement) con.prepareStatement("SELECT tanCode FROM `tancodes` WHERE (tanIndex= "+Tindex+")");
ResultSet DbTcode = codePull.executeQuery();
String answer = DbTcode.getString("");
return answer;
这是我正在使用的代码,但问题是我收到一条错误消息: 错误:java.sql.SQLException:列''没找到。
但我可以看到它确实存在于表格中!
关于如何解决它的任何想法??
答案 0 :(得分:0)
尝试编写这样的查询:
"SELECT tanCode FROM tancodes WHERE tanIndex= '"+Tindex+"'"
这里写下列的名称:
DbTcode.getString("tanCode");// for example
因为"it is: "
它不是列的名称。