Posts by PVC • 641 points
3 posts
-
0
votes1
answer340
viewsA: Pulling data from SQL Server using PHP
Follow this example, which will help you solve your problem, you just need to change the server name and the instance of sql server, as well as the user and the server access password. Either way,…
-
2
votes2
answers2038
viewsA: SQL Insert with line break
E SQL 2016 ? If yes you have to check the SSMS options -> Query Results -> Results to grid -> Reain CR/LF. If you don’t check if this helps you: --CHAR(13) - Quebra de Linha --CHAR(10) -…
-
52
votes9
answers31327
viewsA: How to hash passwords safely?
In short: That accessing the Hash can faster or slower access the password. There are sites called Rainbow Tables, which are Bss of with hashs pre calculated. In the case of SQL / Mysql / ... has a…