[Ajuda] Mysql nгo salva registro - 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] Mysql nгo salva registro (
/showthread.php?tid=660376)
Mysql nгo salva registro -
Ryuzaki07 - 01.11.2018
Boa tarde, recentemente comecei usar Mysql, e como nunca tinha usado antes peguei um FS em Mysql aqui do forum e comecei usa-lo, ao longo das horas fui colocando novos sistemas nele. estava tudo funcionando perfeitamente desliguei o computador se passaram uns 3 dias voltei a mexer no projeto sу que desta vez nгo estava salvando nada da conta do jogador nem mesmo o registro.
Tutorial junto com FS em Mysql usado :
https://sampforum.blast.hk/showthread.php?tid=579909
Print do banco de dados :
https://imgur.com/a/TZhE5N9
Pensei que poderia ter sido alguma alteraзгo q fiz no FS, entгo peguei o original entrei no servidor criei a conta e nгo salvo, deletei o banco de dados criei outro e nгo resolveu, cheguei atй desinstalar o programa e nada. o programa q uso para acessar o phpMyAdmin й o WampServer.
Obs: estava funcionando perfeitamente e do dia pra noite parou atй mesmo o original.
Como posso resolver esse erro ?
Re: Mysql nгo salva registro -
Malandrin - 01.11.2018
Mude o Mysql_Query no OnGameModeInit para:
PHP Code:
mysql_query(MySQLConnection, "CREATE TABLE IF NOT EXISTS `Contas`(`ID`int AUTO_INCREMENT PRIMARY KEY, `Nome`varchar(24) NOT NULL,`Senha` varchar(20) NOT NULL,`Level` int(20) NOT NULL DEFAULT '1',`Matou` int(10) NOT NULL DEFAULT '0',`Morreu` int(10) NOT NULL DEFAULT '0',`Skin` int(10) NOT NULL DEFAULT '0',`Admin` int(10) NOT NULL DEFAULT '0',`Dinheiro` int(20) NOT NULL DEFAULT '5000')", false)
Pois esse FS possui um problema que nгo estб definido os valores dos itens, avise se vai funcionar.
Re: Mysql nгo salva registro -
Ryuzaki07 - 02.11.2018
Quote:
Originally Posted by Malandrin
Mude o Mysql_Query no OnGameModeInit para:
PHP Code:
mysql_query(MySQLConnection, "CREATE TABLE IF NOT EXISTS `Contas`(`ID`int AUTO_INCREMENT PRIMARY KEY, `Nome`varchar(24) NOT NULL,`Senha` varchar(20) NOT NULL,`Level` int(20) NOT NULL DEFAULT '1',`Matou` int(10) NOT NULL DEFAULT '0',`Morreu` int(10) NOT NULL DEFAULT '0',`Skin` int(10) NOT NULL DEFAULT '0',`Admin` int(10) NOT NULL DEFAULT '0',`Dinheiro` int(20) NOT NULL DEFAULT '5000')", false)
Pois esse FS possui um problema que nгo estб definido os valores dos itens, avise se vai funcionar.
|
Opa voltou a funcionar muito obrigado