Posts by Angelo Reis • 115 points
5 posts
-
3
votes1
answer27
viewsQ: Formattednumber of the Intl-React swap semicolon
Hello folks in my code is as follows const currencyFormatter = (value: string | number | ReactText[]) => { return ( <FormattedNumber value={Number(value)} style='currency' currency='BRL'…
-
1
votes3
answers42978
viewsA: How to make a select with multiple `Where field like '%'` in C#
Try it this way Select idaluno, nomealuno,responsal,cpf,rg,fone_contato,desistente from aluno where idaluno = (like '%"+ @idaluno +"%') OR (nomealuno = like'%"+ @nomealuno +"%') OR (CPF='"+…
-
2
votes1
answer177
viewsA: Oracle user is a reserved word, can generate problems ?
Yes! I’ve been in the same situation, however, in Mysql. You should use "MAX" quotes to inform as a normal word. see in this link and look for MAX or RESERVED WORDS (PL/SQL) I hope I helped you!…
oracleanswered Angelo Reis 115 -
5
votes3
answers51028
viewsQ: Regex - Special Character Removal C#
Regex.Replace. is a great solution to remove accentuation. Now I just can’t do the removal of a character type, I have a string that receives the text "1° General Place", string has the character…
-
0
votes1
answer13698
viewsQ: Error Code: 1064 - Mysql
Hello, everybody! When building a simple inclusion process gave this following message! Error Code: 1064. You have an error in your SQL syntax; check the manual that Corresponds to your Mysql server…