Only tested with SQLite but it always returns true. To fix it I changed: md.getTables(null, null, table, null); to ResultSet rs = md.getTables(null, null, table, null); if(rs.next()) return true; else return false;