Conexao = mysql_connect(HOST, USER, SENHA, DATABASE);
mysql_query(Conexao, "CREATE TABLE IF NO EXISTS `Contas`(`Id` AUTO_INCREMENT PRIMARY KEY, `Nome` varchar(24) NOT NULL DEFAULT ' ', `Senha` varchar(20) NOT NULL DEFAULT ' ', `Level` int(10) NOT NULL DEFAULT 0, `Skin` int(10) NOT NULL DEFAULT 0, `Administrador` int(10) NOT NULL DEFAULT 0, `Moderador` int(10) NOT NULL DEFAULT 0, `Corregedor int(10) NOT NULL DEFAULT 0, `Coronel` int(10) NOT NULL DEFAULT 0, `Comandante` int(10) NOT NULL 0, `Ajudante` int(10) NOT NULL DEFAULT 0, `*******r` int(10) NOT NULL DEFAULT 0)", false);
C:\Users\victo\OneDrive\Бrea de Trabalho\server\gamemodes\Server.pwn(25) : error: 075: input line too long (after substitutions)
C:\Users\victo\OneDrive\Бrea de Trabalho\server\gamemodes\Server.pwn(25) : error: 037: invalid string (possibly non-terminated string)
C:\Users\victo\OneDrive\Бrea de Trabalho\server\gamemodes\Server.pwn(25) : error: 017: undefined symbol "CREATE"
C:\Users\victo\OneDrive\Бrea de Trabalho\server\gamemodes\Server.pwn(25) : error: 017: undefined symbol "TABLE"
C:\Users\victo\OneDrive\Бrea de Trabalho\server\gamemodes\Server.pwn(25) : error fatal: 107: too many error messages on one line
new
query[126];
strcat(query, "CREATE TABLE IF NO EXISTS `Contas`(.....");
mysql_query(Conexao, query, false);
new bradoks[500];
strcat(bradoks, "CREATE TABLE IF NO EXISTS `Contas` ");
strcat(bradoks, "(`Id` AUTO_INCREMENT PRIMARY KEY, ");
strcat(bradoks, "`Nome` varchar(24) NOT NULL DEFAULT ' ', ");
strcat(bradoks, "`Senha` varchar(20) NOT NULL DEFAULT ' ', ";
strcat(bradoks, "`Level` int(10) NOT NULL DEFAULT 0, ");
strcat(bradoks, "`Skin` int(10) NOT NULL DEFAULT 0, ");
strcat(bradoks, "`Administrador` int(10) NOT NULL DEFAULT 0, ");
strcat(bradoks, "`Moderador` int(10) NOT NULL DEFAULT 0, ");
strcat(bradoks, "`Corregedor int(10) NOT NULL DEFAULT 0, ");
strcat(bradoks, "`Coronel` int(10) NOT NULL DEFAULT 0, ");
strcat(bradoks, "`Comandante` int(10) NOT NULL 0, ");
strcat(bradoks, "`Ajudante` int(10) NOT NULL DEFAULT 0)");
mysql_query(Conexao, bradoks, false);
Gostaria de um tutorial explicando todas as funзхes do mysql, pq estou realmente comeзando agr, por exemplo, eu crio uma nova coluna na tabela, como add ela sem ter que apagar ela, pq isso realmente vai ser impossнvel em uma att!
|