i verified through the use of stubs that the driver is loading and the connection is being made. my method that queries the database is executing without errors but is returning an empty resultset of 5 columns and 0 rows (which i verified via debug). There are 4 records with 5 columns in the test database and my query asks to return all results. I may just be tired... any insight on what im missing? here is the query method. the database file is access .mdb
public ArrayList fillResults() { ArrayList savedData = new ArrayList(); Statement stmt = null; ResultSet results = null;
try
{
stmt = conn.createStatement();
results = stmt.executeQuery(SELECT_ALL);
while(results.next())
{
for(short i = 0; i < 5; i++)
{
savedData.add(results.getString(i));
}
}
}
catch(SQLException ex)
{
JOptionPane.showMessageDialog(null, ex.getMessage() + ": error during retrieval.");
}
finally
{
try
{
results.close();
stmt.close();
} catch (SQLException e){}
}
return savedData;
}