我不知道如何从数据库中获取String名称,并希望得到像你这样的专家的一些帮助。谢谢你提前帮助。
try{
int row = table.getSelectedRow();
//Select from database below code
String Name_=(/*what to put in here*/);
String query=" select * from UserList where Name Like '%"+Name_+"%' ";
PreparedStatement pst=connection.prepareStatement(query);
ResultSet rs=pst.executeQuery();
table.setModel(DbUtils.resultSetToTableModel(rs));
pst.close();
}catch(Exception e){
e.printStackTrace();
}
答案 0 :(得分:0)
您要丢失大写字母才能与您的数据库通信。