SA-MP Forums Archive
[Ajuda] error 017: undefined symbol "mysql_fetch_row_format" - 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] error 017: undefined symbol "mysql_fetch_row_format" (/showthread.php?tid=652541)



(Resolvido) error 017: undefined symbol "mysql_fetch_row_format" - NATANGameron - 14.04.2018

Jб tentei de tudo para poder corrigir esses erros mas estб impossivel:

Код:
C:\Users\FakePath\clima.pwn(36) : error 017: undefined symbol "mysql_fetch_row_format"
C:\Users\FakePath\clima.pwn(38) : error 017: undefined symbol "mysql_fetch_field_row"
C:\Users\FakePath\clima.pwn(39) : error 017: undefined symbol "mysql_fetch_field_row"
C:\Users\FakePath\clima.pwn(41) : error 017: undefined symbol "mysql_free_result"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
PHP код:
#include <a_samp>
#include <a_mysql>
#define MYSQL_SERVER     "localhost"
#define MYSQL_USER       "root"
#define MYSQL_PASSWORD   ""
#define MYSQL_DB         "samp"
new MySQL:BD;
forward ActualizarClima();
new 
NumeroClima[2];
public 
OnFilterScriptInit()
{
    print(
"\n--------------------------------------");
    print(
"Sistema de Clima Real por The Scope");
    print(
"--------------------------------------\n");
    
BD mysql_connect(#MYSQL_SERVER,#MYSQL_USER,#MYSQL_USER,#MYSQL_PASSWORD);
    
ActualizarClima();
    return 
1;
}
public 
OnFilterScriptExit()
{
     
mysql_close();
    return 
1;
}
public 
ActualizarClima()
{
    new 
query[300], savingstring[20];
    
mysql_query(BD"SELECT * FROM ClimaRealista");
    
cache_get_row_count(query[0]);
    while(
mysql_fetch_row_format(query,"|")) //LINHA 36
    
{
        
mysql_fetch_field_row(savingstring"NumeroClima"); NumeroClima[0] = strval(savingstring); //LINHA 38
        
mysql_fetch_field_row(savingstring"DiaNoche"); NumeroClima[1] = strval(savingstring); //LINHA 39
    
}
    
mysql_free_result(); //LINHA 41
    
switch (NumeroClima[1])
    {
        case 
0SetWorldTime(12); // Noche
        
case 1SetWorldTime(0); // Dнa
    
}
    switch (
NumeroClima[0])
    {
        case 
01234173537384748SetWeather(8); // Tormenta
        
case 5678910111218394045SetWeather(16); // Lluvia
        
case 1314151641424346SetWeather(16); // Nieve
        
case 19212223SetWeather(2); // Nievla Soleado
        
case 26SetWeather(36); // Nubleado
        
case 2728293036SetWeather(33); // Nubleado Soleado
        
case 31323334SetWeather(46); // Soleado
    
}
    
SetTimer("ActualizarClima"300000false);//5 Minutos

Pf me ajudem


Re: error 017: undefined symbol "mysql_fetch_row_format" - Zeus666 - 14.04.2018

Ola amigo. Que estas tu mysql versione? Upgradar R39.


Re: error 017: undefined symbol "mysql_fetch_row_format" - NATANGameron - 14.04.2018

Mysql R41-4


Re: error 017: undefined symbol "mysql_fetch_row_format" - NelsonC - 14.04.2018

Quote:
Originally Posted by NATANGameron
Посмотреть сообщение
Mysql R41-4
Entгo atualize a sua gamemode.

Use como base: http://forum.sa-mp.com/showpost.php?...30&postcount=1


Re: error 017: undefined symbol "mysql_fetch_row_format" - NATANGameron - 14.04.2018

Nгo й Gamemode e sim um FilterScript


Re: error 017: undefined symbol "mysql_fetch_row_format" - zG - 14.04.2018

atualiza seu mysql.


Re: error 017: undefined symbol "mysql_fetch_row_format" - NATANGameron - 14.04.2018

Ele esta atualizado so preciso atualizar essas funзхes dos erros que nгo sei qual й o nome delas hoje


Re: error 017: undefined symbol "mysql_fetch_row_format" - Cleyson - 14.04.2018

PHP код:
public ActualizarClima() 

    
mysql_tquery(BD"SELECT * FROM ClimaRealista""ResultadoConsulta""");
    return 
1;
}
forward ResultadoConsulta();
public 
ResultadoConsulta() 

    if(
cache_num_rows() > 0
    {
        
cache_get_value_int(0"NumeroClima"NumeroClima[0]);
        
cache_get_value_int(0"DiaNoche"NumeroClima[1]);
    } 
    switch (
NumeroClima[1]) 
    { 
        case 
0SetWorldTime(12); // Noche 
        
case 1SetWorldTime(0); // Dнa 
    

    switch (
NumeroClima[0]) 
    { 
        case 
01234173537384748SetWeather(8); // Tormenta 
        
case 5678910111218394045SetWeather(16); // Lluvia 
        
case 1314151641424346SetWeather(16); // Nieve 
        
case 19212223SetWeather(2); // Nievla Soleado 
        
case 26SetWeather(36); // Nubleado 
        
case 2728293036SetWeather(33); // Nubleado Soleado 
        
case 31323334SetWeather(46); // Soleado 
    

    
SetTimer("ActualizarClima"300000false);//5 Minutos
    
return 1;




Re: error 017: undefined symbol "mysql_fetch_row_format" - NATANGameron - 18.04.2018

Quote:
Originally Posted by Cleyson
Посмотреть сообщение
PHP код:
public ActualizarClima() 

    
mysql_tquery(BD"SELECT * FROM ClimaRealista""ResultadoConsulta""");
    return 
1;
}
forward ResultadoConsulta();
public 
ResultadoConsulta() 

    if(
cache_num_rows() > 0
    {
        
cache_get_value_int(0"NumeroClima"NumeroClima[0]);
        
cache_get_value_int(0"DiaNoche"NumeroClima[1]);
    } 
    switch (
NumeroClima[1]) 
    { 
        case 
0SetWorldTime(12); // Noche 
        
case 1SetWorldTime(0); // Dнa 
    

    switch (
NumeroClima[0]) 
    { 
        case 
01234173537384748SetWeather(8); // Tormenta 
        
case 5678910111218394045SetWeather(16); // Lluvia 
        
case 1314151641424346SetWeather(16); // Nieve 
        
case 19212223SetWeather(2); // Nievla Soleado 
        
case 26SetWeather(36); // Nubleado 
        
case 2728293036SetWeather(33); // Nubleado Soleado 
        
case 31323334SetWeather(46); // Soleado 
    

    
SetTimer("ActualizarClima"300000false);//5 Minutos
    
return 1;

Obrigado Cleyson, agora foi possivel compilar sem erros eu so nгo estava conseguindo consertar por conta do script ser antigo mas muito obrigado!