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



Tag Mismatch - LucasF - 22.05.2017

Entгo galera nгo estou entendendo o porque estб dando esse erro, sendo que estб certo meu cуdigo ao meu ponto de vista!

Код:
/*						MYSQL CONFIG 					*/
#define     MYSQL_HOST 	"127.0.0.1"
#define     MYSQL_USER 	"root"
#define     MYSQL_DB   	"sampserver"
#define     MYSQL_PASS 	""
Код:
MySQL = mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_DB, MYSQL_PASS);
Код:
C:\Users\lucas\Downloads\DEVELOPER\SAMP DEVELOPER\samp037_svr_R2-1-1_win32\gamemodes\new.pwn(28) : warning 213: tag mismatch
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.



Re: Tag Mistach - ViniBorn - 22.05.2017

PHP код:
mysql_connect(const host[], const user[], const pass[], const db[], MySQL:handleauto_reconnect



Re: Tag Mistach - IlanZ - 22.05.2017

Como definiu a variбvel MySQL?


Re: Tag Mistach - LucasF - 22.05.2017

Quote:
Originally Posted by IlanZ
Посмотреть сообщение
Como definiu a variбvel MySQL?
Код:
new MySQL;



Re: Tag Mistach - IlanZ - 22.05.2017

Tente:

Код:
new MySQL:MySQL;



Re: Tag Mistach - s4kuL - 22.05.2017

Qual versгo do MySQL vocк estб usando? assim fica mas fбcil de ajuda-lo.


Re: Tag Mistach - LucasF - 22.05.2017

Quote:
Originally Posted by s4kuL
Посмотреть сообщение
Qual versгo do MySQL vocк estб usando? assim fica mas fбcil de ajuda-lo.
r41-2


Re: Tag Mistach - IlanZ - 23.05.2017

Quote:
Originally Posted by IlanZ
Посмотреть сообщение
Tente:

Код:
new MySQL:MySQL;
Quote:
Originally Posted by LucasF
Посмотреть сообщение
r41-2
Foi resolvido?


Re: Tag Mistach - LucasF - 23.05.2017

Quote:
Originally Posted by IlanZ
Посмотреть сообщение
Foi resolvido?
Ainda nгo, estou dando prioridades a outras coisas...


Re: Tag Mistach - RodrigoMSR - 24.05.2017

Como o ViniBorn disse, os parвmetros estгo em ordem incorreta, e tambйm falta a tag na criaзгo da variбvel:
Код:
new MySQL:MySQL;

MySQL = mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS, MYSQL_DB);