gpt4 book ai didi

使用组合框和文本字段过滤 JTable 中的数据时出现 Java 错误

转载 作者:行者123 更新时间:2023-12-01 18:00:06 25 4
gpt4 key购买 nike

我在使用 Combobox 和 Textfield 在 JTable 中应用过滤器时遇到问题,问题在于其结果集,但从 JTable 插入数据很好,但过滤 JTable 中的数据似乎会触发 sql 语法,请帮忙

try {    
String selection = (String)combo.getSelectedItem();
String query = "select * from tableemploy where " + selection +" = ? ";
ps = con.prepareStatement(query);
ps.setString(1, tsearch.getText());
rs = ps.executeQuery();
emptable.setModel(DbUtils.resultSetToTableModel(rs));
ps.close();
rs.close();
}
catch (Exception e) {
e.printStackTrace();
}
}

JComboBox

    Container box = getContentPane();
box.setLayout(null);
box.add(combo = new JComboBox());
combo.setModel(new DefaultComboBoxModel(new String[] {"First Name", "Middle Name", "Last Name", "Username"}));
combo.setBounds(410, 85, 100, 30);
combo.setSelectedItem(null);

最佳答案

我的坏处就是它触发 sql 语法的原因,因为组合框模型必须对应于 sql 行

关于使用组合框和文本字段过滤 JTable 中的数据时出现 Java 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60653095/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com