I have a code which will fetch the row from company table and insert into JComboBox.
When APP runs in debug mode, the resultset is populated with data. but when in normal execution, the result set is empty!
I am using Netbeans IDE 7.0.1 for Development and phpmyadmin mysql Database version 5.1.37.
Below is my code :
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);
}
Help me out of this. Thanks in Advance.

comboCompanyName.addItem(rs.getString("comp_name"));forcomboCompanyName? – Bhavik Shah Dec 28 '12 at 11:47No data foundcome from? I can't find it in your code. – jlordo Dec 28 '12 at 11:50