16.10.2014, 08:30
olб, estou fazendo uma integraзгo com banco de dados MySQL no meu GM, porйm estou tendo problemas com o tamanho das linhas de cуdigo, quando vou compilar dб esse erro:
o cуdigo onde se localiza o erro й o seguinte:
Alguйm sabe como resolver?
Код:
C:\Users\Admin\Documents\samp03z_svr_R4_win32\gamemodes\brc.pwn(715) : error 075: input line too long (after substitutions)
pawn Код:
mysql_query(Connection, "CREATE TABLE IF NOT EXISTS 'users' (\
'id' int(11) NOT NULL AUTO_INCREMENT,\
'name' varchar(25) NOT NULL,\
'password' varchar(255) NOT NULL,\
'bank' int(11) NOT NULL,\
'skin' int(3) NOT NULL,\
'money' int(11) NOT NULL,\
'life' double NOT NULL,\
'armor' double NOT NULL,\
'x' double NOT NULL,\
'y' double NOT NULL,\
'z' double NOT NULL,\
'angle' double NOT NULL,\
'interior' int(11) NOT NULL,\
'vw' int(11) NOT NULL,\
'weapon1' int(2) NOT NULL,\
'ammo1' int(4) NOT NULL,\
'weapon2' int(2) NOT NULL,\
'ammo2' int(4) NOT NULL,\
'weapon3' int(2) NOT NULL,\
'ammo3' int(4) NOT NULL,\
'org' int(1) NOT NULL,\
'email' varchar(255) NOT NULL,\
'recover_token' varchar(64),\
'recover_request' timestamp,\
PRIMARY KEY ('id'));",false,"r@MySQL_Start","s","users");