Quantcast
Channel: SA-MP Forums
Viewing all articles
Browse latest Browse all 18226

Input line too long (after substitutions), en mysql_query

$
0
0
Luego de un largo rato en SA-MP, estoy comenzando con lo que seria MySQL y lo relacionado, quize hacer una función que cree las tablas de datos en una columna con mysql_query, pero estoy recibiendo este error:

Code:

MySQLGameMode.pwn(109) : error 075: input line too long (after substitutions)
MySQLGameMode.pwn(110) : error 037: invalid string (possibly non-terminated string)
MySQLGameMode.pwn(110) : error 017: undefined symbol "CREATE"
MySQLGameMode.pwn(110) : error 017: undefined symbol "TABLE"
MySQLGameMode.pwn(110) : fatal error 107: too many error messages on one line

Código:
Code:

            mysql_query(handle, "CREATE TABLE IF NOT EXISTS `usuarios` (`id` int(11) NOT NULL AUTO_INCREMENT,\
                `pNombre` text NOT NULL,\
                `pContrasena` int(19) NOT NULL, \
                `pSexo` int(1) NOT NULL DEFAULT '1',\
                `pNacimiento` text NOT NULL, \
                `pSkin` int(3) NOT NULL DEFAULT '0',\
                `pPosX` float(1) NOT NULL DEFAULT '0',\
                `pPosY` float NOT NULL DEFAULT '0',\
                `pPosZ` float NOT NULL DEFAULT '0',\
                  `pMySQLID` int(11) NOT NULL DEFAULT '0',\
                  `pVirtualWorld` int(5) NOT NULL DEFAULT '0',\
                  `pInterior` int(5) NOT NULL DEFAULT '0',\
                  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;", false);


Viewing all articles
Browse latest Browse all 18226

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>