【发布时间】:2012-04-17 22:16:37
【问题描述】:
我想执行一个搜索查询并在JTable 中显示结果。我有一个JComboBox,用户可以在其中选择要搜索的字段,例如 name、age 或 ID。
这是我的代码。
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;
【问题讨论】:
-
请对代码块使用一致且符合逻辑的缩进。
-
参见Q&A,了解 SQL 注入。