SA-MP Forums Archive
[Ajuda] 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] Ajuda Mysql (/showthread.php?tid=458501)



Ajuda Mysql - shittt - 17.08.2013

Olб feras do paranauк meu amigo me recomendou esse GM Em mysql para estudar so que veio com 3 errors alguem ai sabe resolver ?

As Linhas nao tem muita importancia .

Код:
error 017: undefined symbol "PlayerTextDrawSetPreviewModel"
 undefined symbol "PlayerTextDrawSetPreviewRot"

Esses error aqui e da include . mSelection 


 error 017: undefined symbol "mysql_query"
Aqui a include https://sampforum.blast.hk/showthread.php?tid=407045


Re: Ajuda Mysql - smiiir - 17.08.2013

pawn Код:
error 017: undefined symbol "PlayerTextDrawSetPreviewModel"
error 017: undefined symbol "PlayerTextDrawSetPreviewRot"
Atualize as includes mSelection

pawn Код:
error 017: undefined symbol "mysql_query"
Provavelmente vocк estб usando MySQL R7 e lб й
pawn Код:
mysql_function_query



Re: Ajuda Mysql - mau.tito - 17.08.2013

VocК usou a funзгo errada , tudo que vocК fazer no protop vocК tem que utilizar !
Код:
mysql_function_query ( coneзгo , string , true/false , "i", playerid);



Re: Ajuda Mysql - shittt - 19.08.2013

Antes

pawn Код:
forward mysql_query_ex(String[]);
public mysql_query_ex(String[])
{
    if(ConDead == 0)
    {
        //if(mysql_ping(connection) != 0)//Kid's mysql
        if(mysql_ping() != 1)
        {
            SendRconCommand("password 666");
            SendRconCommand("hostname Mysql problems || Server locked!");
            foreach(Player, i)
            {
                Kick(i);
            }
            ConDead = 1;
        }
    }
    if(ConDead == 1)
    {
        new string[1024];
        format(string, sizeof(string), "%s\n", String);
        MysqlLog(string);
    }
    else
    {
        mysql_query(String) ; //<--------------- antes
    }
    return 1;
}
Ai depois apareceu um erro.

pawn Код:
F:\Users\weverton\Documents\GM3\gamemode\gamemode\gamemodes\LSL-RP.pwn(8796) : error 035: argument type mismatch (argument 1)
Como fico...

pawn Код:
forward mysql_query_ex(String[]);
public mysql_query_ex(String[])
{
    if(ConDead == 0)
    {
        //if(mysql_ping(connection) != 0)//Kid's mysql
        if(mysql_ping() != 1)
        {
            SendRconCommand("password 666");
            SendRconCommand("hostname Mysql problems || Server locked!");
            foreach(Player, i)
            {
                Kick(i);
            }
            ConDead = 1;
        }
    }
    if(ConDead == 1)
    {
        new string[1024];
        format(string, sizeof(string), "%s\n", String);
        MysqlLog(string);
    }
    else
    {
        mysql_function_query(String) ;
    }
    return 1;
}



Re: Ajuda Mysql - mau.tito - 19.08.2013

troca isso
Код:
mysql_function_query(String) ;
por isso!
Код:
mysql_function_query(connection, String, false, # ,# ) ;



Re: Ajuda Mysql - shittt - 19.08.2013

Vix : Problem dnv

pawn Код:
F:\Users\weverton\Documents\GM3\gamemode\gamemode\gamemodes\LSL-RP.pwn(8796) : error 017: undefined symbol "connection"



Re: Ajuda Mysql - smiiir - 19.08.2013

Coloca sua variavel de conexгo ali onde estб connection


Re: Ajuda Mysql - shittt - 19.08.2013

Nгo tem.


Re: Ajuda Mysql - smiiir - 19.08.2013

Meu deus,

Como vocк estб conectando o MySQL?

Exemplo:
pawn Код:
Conexao = mysql_connect ( HostName, UserName, DataName, PassName ) ;



Re: Ajuda Mysql - shittt - 19.08.2013

Mano eu baixei Estй GM : https://sampforum.blast.hk/showthread.php?tid=443394