28.05.2014, 16:27
It was actually(?) like this in the older versions
But, I don't know how it works on MySQL R38 version. Would be great if someone could help me a bit,
Thanks.
pawn Код:
mysql_query(gQuery,
"CREATE TABLE IF NOT EXISTS `"Users_Table"` ("\
"`AccountID` int(10) NOT NULL AUTO_INCREMENT,"\
"`UserName` varchar(25) NOT NULL,"\
"`Password` varchar(129) NOT NULL,"\
"`IP` varchar(16) NULL,"\
"`Score` int(15) NULL,"\
"`Money` int(15) NULL,"\
"`Kills` int(15) NULL,"\
"`Deaths` int(15) NULL,"\
"`Level` int(15) NULL,"\
"PRIMARY KEY (`AccountID`)"\
") ENGINE=InnoDB DEFAULT CHARSET=latin1;");
Thanks.