SA-MP Forums Archive
[Ajuda] Pegar o nъmero da tabela - 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] Pegar o nъmero da tabela - MySQL (/showthread.php?tid=390196)



Pegar o nъmero da tabela - MySQL - YaaN - 05.11.2012

Preciso pegar o valor que estб em "Score" dentro da tabela "Contas" de um determinado nick, como fazer isso ?


Respuesta: Pegar o nъmero da tabela - MySQL - Parka - 05.11.2012

primeiro vocк deve criar um banco de dados


Re: Pegar o nъmero da tabela - MySQL - YaaN - 05.11.2012

"Ava". Amigo, jб criei o db.


Re: Pegar o nъmero da tabela - MySQL - telmo_ferreira - 05.11.2012

pawn Code:
new query[64], savingstring[10];
        new score;
        format(query, sizeof(query), "SELECT * FROM Contas WHERE usuario = '%s'",nomedoplayer);
        mysql_query(query);
        mysql_store_result();
        while(mysql_fetch_row_format(query,"|"))
            {
            mysql_fetch_field_row(savingstring, "Score"); score = strval(savingstring);
            }
            mysql_free_result();



Re: Pegar o nъmero da tabela - MySQL - Joao Pedro - 05.11.2012

Veja minha vнdeo aula sobre MYSQL. Estб na minha assinatura.


Re: Pegar o nъmero da tabela - MySQL - YaaN - 06.11.2012

Deu estes dois erros @telmo_ferreira
Code:
error 017: undefined symbol "mysql_query"
error 017: undefined symbol "mysql_score_result"



Re: Pegar o nъmero da tabela - MySQL - Joao Pedro - 06.11.2012

Ve a minha video aula...


Re: Pegar o nъmero da tabela - MySQL - telmo_ferreira - 06.11.2012

mostra como meteste o cуdigo , qual o plugin que estas a usar ?

adicionaste #include <a_mysql> no topo do GM ?
tens tudo correcto na pasta plugins ?
o server esta a ler bem o plugin ? viste no server_log ?


Re: Pegar o nъmero da tabela - MySQL - [JD]BlackFire - 06.11.2012

PHP Code:
SELECT Score FROM tabela WHERE Nick = %



Re: Pegar o nъmero da tabela - MySQL - YaaN - 06.11.2012

Estou usando o MySQL R7, estб tudo configurado, jб consigo adcionar as contas na tabela..

BlackFire, mas qual funзгo eu uso ? mysql_format ?