SA-MP Forums Archive
[Ajuda] MySQL.. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] MySQL.. (/showthread.php?tid=578102)



MySQL.. - HaRdiiZin - 16.06.2015

-----------------------------------


Re: MySQL.. - Mark009 - 16.06.2015

Depende da versгo do plugin MySQL que vocк estiver utilizando, a partir da versгo R33, deve ser feito + ou - assim:

pawn Код:
mysql = mysql_connect("localhost", "usuario", "banco de dados", "senha");
    if(mysql_errno(mysql) != 0) // Nesse caso se der erro, o servidor serб fechado.
    {
        print("Nгo foi possнvel conectar ao banco de dados!");
        SendRconCommand("exit");
    }



Re: MySQL.. - Gii - 16.06.2015

PHP код:
if ( mysql ) {
    
    print(
"Erro de conexгo!");
    
SendRconCommand("exit");

Vocк encontra toda documentaзгo do MySQL (>= R33) aqui: https://sampwiki.blast.hk/wiki/MySQL/R33


Re: MySQL.. - HaRdiiZin - 16.06.2015

Obrigado aos 2, RESOLVIDO.