在我的项目中,我做了一些代码从数据库表中搜索员工姓名并将其加载到jcombobox中。
表名称:employee
列名称:empid(Primarykey), emp_name, position
通常我会这样编码我的搜索查询。
public void EmployeeName1(JComboBox comboName) {
Vector v = new Vector();
try {
ResultSet rs = db.getData("select emp_name from employee");
v.add("--SELECT--");
while (rs.next()) {
v.add(rs.getString("emp_name"));
comboName.setModel(new DefaultComboBoxModel(v));
}
} catch (Exception e) {
e.printStackTrace();
}
}
运行良好。
但是现在我对这段代码做了一些不同的事情。
public void EmployeeName1(JComboBox comboName) {
Vector v = new Vector();
try {
String columnName = "emp_name";
String tableName = "employee";
ResultSet rs = db.getData("select columnName from tableName");
v.add("--SELECT--");
while (rs.next()) {
v.add(rs.getString(columnName));
comboName.setModel(new DefaultComboBoxModel(v));
}
} catch (Exception e) {
e.printStackTrace();
}
}
但是,当我运行这段代码时,我遇到了这个错误。
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Table 'textile.tablename' doesn't exist
这是我的数据库类代码:
package Model;
//import static Model.JDBC.con;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import javax.swing.JOptionPane;
public class JDBC {
static String driver = "com.mysql.jdbc.Driver";
static String url = "jdbc:mysql://localhost/textile";
static Connection con;
static boolean b;
public static void setCon() {
try {
Class.forName(driver);
con = DriverManager.getConnection(url, "root", "access456");
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, ex);
}
}
public static Connection getCon() throws Exception {
if (con == null) {
setCon();
}
return con;
}
public static boolean putData(String sql) {
try {
PreparedStatement state = getCon().prepareStatement(sql);
state.executeUpdate();
b = true;
} catch (Exception ex) {
b = false;
JOptionPane.showMessageDialog(null, ex);
}
return b;
}
public static ResultSet getData(String sql) throws Exception {
Statement state = JDBC.getCon().createStatement();
ResultSet rset = state.executeQuery(sql);
return rset;
}
}
最佳答案
在我看来,您在这两个代码段之间保持了其他所有相同的功能。我唯一可以看到的应该更改的内容是:
ResultSet rs = db.getData("select columnName from tableName");
至
ResultSet rs = db.getData("select " + columnName + " from " + tableName);
关于mysql - 如何解决MySQLSyntaxErrorException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24136190/