Posts by Daniel Sampaio • 5 points
3 posts
-
0
votes1
answer68
viewsQ: Hibernate Query using Like and Where
Beauty guys ? So I’m doing a query with Hibernate, which is the following: Query query = session.createQuery("SELECT c FROM Cliente c WHERE c.filial =:filial AND c.ativo =:ativo AND c.tipoCliente…
-
0
votes2
answers171
viewsA: Listeners from firebase database does not run and does not retrieve data, write - java server desktop
He’s giving you a List You’re taking it as if it were a single object! has to make a go for(DataSnapshot snap : dataSnapShot.getValues()){ Usuario user = snap.getValue(Usuario.class); // Classe…
-
0
votes1
answer63
viewsQ: Am I doing this exercise right?
Until then I am able to do it, but the method imprimiAgenda() is printing, but at the same time giving null Pointer. And also want to know if my logic is going well. If you can help me, I appreciate…