搜索查询并在jtable中显示结果

时间:2012-04-17 22:16:38

标签: java mysql swing jtable

我想执行搜索查询并在JTable中显示结果。我有一个JComboBox,用户可以在其中选择要搜索的字段,例如 name age ID 。< / p>

这是我的代码。

try {
    Class.forName("com.mysql.jdbc.Driver");    
    String connectionUrl = "jdbc:mysql://localhost/db?" + "user=root&password=";
    con = DriverManager.getConnection(connectionUrl);
    Statement state = con.createStatement();

    ResultSet result = state.executeQuery("SELECT * FROM db.atelier where '" + 
        jComboBox1.getSelectedItem().toString() + "'='" +
        jTextField1.getText().toString() + "'");

    ResultSetMetaData resultMeta = result.getMetaData();

    while(result.next()){
        model.addRow(new Object[]{result.getObject(1),result.getObject(2)});      
        model.setDataVector(
            new Object[][]{{result.getObject(1),result.getObject(2)},{}},                           
            new Object[]{resultMeta.getColumnName(1),resultMeta.getColumnName(2)});
        }

    jPanel1.revalidate();
    model.fireTableDataChanged();
    this.repaint();
    state.close();
}
catch (SQLException e){
    System.out.println("SQL Exception: "+ e.toString());
}
catch (ClassNotFoundException cE){
    System.out.println("Class Not Found Exception: "+ cE.toString());
}

con=null;

2 个答案:

答案 0 :(得分:2)

应删除组合框所选项目周围的单引号,以使其成为字段名称而不是字符串文字。此外,PreparedStatement,其中文本字段作为替换参数替换SQL字符串中的?更好。这会转义在文本字段中输入的单引号(以及反斜杠等)。

答案 1 :(得分:1)

顺便说一下,构建搜索查询的方式只会将应用程序暴露给SQL注入。

相关问题