17.01.2013, 21:23
I have this code:
when i want to add another var like:
`tester` int(11) NOT NULL, \
after bannedby it won't let me..
it says:
erp.pwn(531) : error 075: input line too long (after substitutions)
when i want to add another var like:
`tester` int(11) NOT NULL, \
after bannedby it won't let me..
it says:
erp.pwn(531) : error 075: input line too long (after substitutions)
Код:
mysql_function_query(dbHandle, "CREATE TABLE IF NOT EXISTS `users` ( \ `id` int(11) NOT NULL AUTO_INCREMENT, \ `name` varchar(24) NOT NULL, \ `password` varchar(129) NOT NULL, \ `cash` int(11) NOT NULL, \ `level` int(11) NOT NULL, \ `skin` int(3) NOT NULL, \ `admin` int(3) NOT NULL, \ `sex` int(3) NOT NULL, \ `age` int(11) NOT NULL, \ `origin` varchar(129) NOT NULL, \ `deaths` int(11) NOT NULL, \ `banned` int(3) NOT NULL, \ `bannedby` varchar(129) NOT NULL, \ PRIMARY KEY (`id`) \ )", false, "SendQuery", "");