Posts by Fellipe Prado • 1 point
3 posts
-
0
votes0
answers24
viewsQ: How to read an entire SQL Server table and update another one?
I need to do a massive daily processing where I need to read a table my row by row and apply some rules and in the end update a column from another table. What would be the best way to make this…
-
0
votes0
answers21
viewsQ: How to format field with a mask defined in Java
How I can format an int field to string the following way: Campo int: 62016 final field a string that has to stand "062016"
-
0
votes0
answers102
viewsQ: Check a regular expression with string in Java
I need to check if a particular digit recovered from a regular expression is equal to my input field digit, I am using the code below but can’t do the check: String digitoSenha = senha.substring(i,…