Posts by Ramon Xavier do Nascimento • 1 point
2 posts
-
0
votes1
answer26
viewsA: Send Text Input to a Formdata (angular)
First try to convert the file to Base4: static converterArquivoParaBase64(file: File): Promise<string | ArrayBuffer> { return new Promise((resolve, reject) => { const reader = new…
-
0
votes1
answer51
viewsA: Fill in the name even if the name does not exist in the table
Try using the command CASE WHEN at your request. The same will basically fill in with the value you want, if your column is with a certain value. SELECT (CASE WHEN COLUNA IS NULL THEN 'ATIVIDADE'…