SA-MP Forums Archive
MySQL Help? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: MySQL Help? (/showthread.php?tid=185861)



MySQL Help? - Luis- - 26.10.2010

I am looking for someone to help me with MySQL as I cannot do it even looking at HIC's Tut it is still hard, I am stuck with this part.

pawn Код:
mysql_debug(1);
    mysql_connect("localhost", "luis_luis1", "luis_samp1", "******");
    {
        print("SQL connection attempt 1 FAILED!");
        if(!mysql_connect("localhost", "luis_luis1", "luis_samp1", "******"))
        {
            print("SQL connection attempt 2 FAILED!");
            if(!mysql_connect("localhost", "luis_luis1", "luis_samp1", "******"))
            {
                print("SQL connection attempt 3 FAILED!");
                return 1;
            }
        }
    }
I have configured all the shit in PHPMyAdmin and set it up correct in Pawno, Any ideas?