Posts by Daniel Bastos • 43 points
3 posts
-
1
votes2
answers93
viewsA: Nodejs replace windows terminal window
Hello, friend. You are probably confusing. Node.js does not install any new terminal on any Operating System. What may have happened is you have followed a tutorial that guided you to install the…
-
0
votes1
answer69
viewsA: Pagination of results with search in two fields
You better use the SELECT COUNT(*) FROM registro_clientes; to find out how many records there are. The query is much smaller and more peformatica. I didn’t really understand the account you wanted…
-
3
votes1
answer332
viewsA: Value problem containing comma
Database only accepts decimal places with . (point). If you are passing 1,99 in the variable money is likely to give problem not only in the bank. It uses a replace in the variable of , for ..…