我有一个代码,它将从公司表中获取行并插入JComboBox。
当APP在调试模式下运行时,结果集将填充并包含数据。但在正常执行时,结果集为空!
我正在使用Netbeans IDE 7.0.1
进行开发,使用phpmyadmin mysql数据库版本5.1.37
。
以下是我的代码:
boolean isvalue = false; // variable to identify if the company name found or not.
ResultSet rs = null;
try {
st = con.createStatement();
if(con == null) {
logger.error("Database Connection Not available.");
throw new NullPointerException();
}
//Set the company name to combo box
rs = st.executeQuery("Select comp_name from company");
while (rs.next()) {
comboCompanyName.addItem(rs.getString("comp_name"));
isvalue = true; //Set true if found
}
} catch (SQLException ex) {
System.out.println("SQLError found while updating information." + ex.getMessage());
} catch (Exception ex) {
System.out.println("Error found while updating information." + ex.getMessage());
}
if (!isvalue) //Check company information available
{
JOptionPane.showMessageDialog(null, "System could not found any company information.", "Error", JOptionPane.WARNING_MESSAGE);
}
帮助我解决这个问题。 在此先感谢。
答案 0 :(得分:0)
您可以尝试:
,而不是使用是值变量PreparedStatement statement = con.prepareStatement("SELECT comp_name FROM company");
ResultSet result = statement.executeQuery();
int i=0;
while (result.next()) {
jComboBox1.addItem(result.getString(1));
i++;
}
if(i==0){
JOptionPane.showMessageDialog(null, "System could not found any company information.", "Error",JOptionPane.WARNING_MESSAGE);
}
答案 1 :(得分:0)
我找到了这个问题。
由于连接问题没有正确关闭。即先前的连接没有正确关闭,我也使用了静态连接对象。