Posts by Bruno Brito • 31 points
3 posts
-
0
votes2
answers55
viewsA: How to format the date and month so that they are typed 0 in their formatting (day or month that goes from 1 to 9)?
I think what you need is this right here: String strDate= String.format("%02d/%02d/%s", dia, mes, ano);
-
1
votes2
answers592
viewsQ: Spring Modelling JPA Person -> Personal Modelling -> Function
I did the data modeling (UML) but at the time of implementing I’m doubtful how to do. I wish there was only one table Person. In that table person I would have the field tipoPessoa("p","f") and…
-
1
votes1
answer672
viewsQ: Install only the app without overwriting the sqlite database that is already being used
I am developing an application using Delphi Tokyo for Android. But by always compiling it takes the database from sqlite and about writing the that is already there full of data. As this app goes to…