Posts by João G. Hartmann • 31 points
5 posts
-
1
votes0
answers32
viewsQ: Error in performing criteria with filter on object belonging to Composite ID
An error occurs when I try to search the Car domain class by applying a filter on the Mark which is a FK and is part of the Composite ID. class Carro implements Serializable { Marca marca LocalDate…
-
0
votes1
answer112
viewsA: Command that replaces Team.Leep?
Guy like that worked for me, take a look to see if it works from time import sleep print("Faz algo aqui") ##dorme em segundos sleep(1) print("Faz outra coisa aqui")
-
0
votes2
answers1751
viewsA: Medium, Minimum and Maximum in a python dictionary
d={"a": 3, "b": 2} minimo = min(d, key=d.get) print(minimo) maximo = max(d, key=d.get) print(maximo) código aqui Now that’s right, I’ve really made a mistake.
-
1
votes2
answers789
viewsA: Take the largest value from a Mysql column
SELECT GREATEST(Nota1, Nota2, Nota3, Nota4) FROM tabela WHERE id=1
mysqlanswered João G. Hartmann 31 -
1
votes0
answers46
viewsQ: Back to Android menu
Have a menu inside a menu, like going back to the previous menu? <menu xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto"…