[Ajuda] MySQL
#4

Quote:
Originally Posted by CALENZ021
Посмотреть сообщение
Aproveitando o tуpico... Estou com um problema, quando vou se registrar nгo insere no banco de dados.

PHP код:
mysql_format(IDConexaoQuerysizeof(Query), "INSERT INTO `contas`\
            (`Profissao`, `Nome`, `Senha`, `Admin`, `Level`, `Exp`, `Skin`, `Vip`, `Dinheiro`, `SaldoBancario`, `SpawnX`, `SpawnY`, `SpawnZ`, `SpawnA`)\
            VALUES\
            (`Profissao`=%d, `Nome`='%s', `Senha`='%s', `Admin`=%d, `Level`=%d, `Exp`=%d, `Skin`=%d, `Vip`=%d, `Dinheiro`=%d, `SaldoBancario`=%d, `SpawnX`=%f, `SpawnY`=%f, `SpawnZ`=%f, `SpawnA`=%f"
,0pNome[playerid], pSenha[playerid],0,0,0,0,0,0,0,0,0,0,0);
            
mysql_tquery(IDConexaoQuery);
            
PlayerPlaySound(playerid10560.00.00.0);
            print(
"Conta Cadastrada com sucesso!"); // Mais uma coisa, coloque o nome do player aqui porque senгo vai ficar difнcil saber qual player fez o cadastro, etc..
            
CarregarRegistro(playerid); 
Ao usar '%d', vocк estб dizendo que o conteъdo й uma string, mas a database estб configurada para receber um nъmero, entгo ela nгo executa o cуdigo.
Код:
(`Profissao`='%d'/*Errado*/, `Nome`='%s' /*Correto*/
Код:
mysql_format(IDConexao, Query, sizeof(Query), "INSERT INTO `contas`\ 
            (`Profissao`, `Nome`, `Senha`, `Admin`, `Level`, `Exp`, `Skin`, `Vip`, `Dinheiro`, `SaldoBancario`, `SpawnX`, `SpawnY`, `SpawnZ`, `SpawnA`)\ 
            VALUES\ 
            (`Profissao`=%d, `Nome`='%s', `Senha`='%s', `Admin`=%d, `Level`=%d, `Exp`=%d, `Skin`=%d, `Vip`=%d, `Dinheiro`=%d, `SaldoBancario`=%d, `SpawnX`=%f, `SpawnY`=%f, `SpawnZ`=%f, `SpawnA`=%f",0, pNome[playerid], pSenha[playerid],0,0,0,0,0,0,0,0,0,0,0); 
            mysql_tquery(IDConexao, Query); 
            PlayerPlaySound(playerid, 1056, 0.0, 0.0, 0.0); 
            print("Conta Cadastrada com sucesso!"); 
            CarregarRegistro(playerid);
Reply


Messages In This Thread
MySQL - by CALENZ021 - 12.06.2018, 22:55
Re: MySQL - by augustogdo - 12.06.2018, 23:23
Re: MySQL - by CALENZ021 - 13.06.2018, 21:00
Re: MySQL - by Ermanhaut - 13.06.2018, 22:41
Re: MySQL - by CALENZ021 - 13.06.2018, 23:06
Re: MySQL - by F1N4L - 14.06.2018, 11:27
Re: MySQL - by MBJ - 14.06.2018, 13:39
Re: MySQL - by CALENZ021 - 15.06.2018, 00:04
Re: MySQL - by CALENZ021 - 15.06.2018, 01:55
Re: MySQL - by MBJ - 15.06.2018, 02:05

Forum Jump:


Users browsing this thread: 2 Guest(s)