Posts by RDebbuger • 38 points
2 posts
-
0
votes1
answer203
viewsA: Java arralist does not return data
Try this code on your searchEarly method: public ArrayList<Contact> searchEarly(String name) { ArrayList<Contact> search; search = new ArrayList<Contact>(); for(int i = 0; i <…
-
2
votes2
answers114
viewsQ: Return vehicles that have all parts in a given table
I have the following question, in my database I have the following tables: | veiculo | | idVeiculo | placa | | peca | | idPeca | nomePeca | | relVeiPec | | idVeiculo | idPeca | | pecaObrig | |…