Quote:
Originally Posted by joeycano
Also got error:
Invalid SQL:
CREATE TABLE `vb_nmaps_settings` (
`varname` varchar(100) NOT NULL,
`set_value` varchar(25) NOT NULL,
PRIMARY KEY (`varname`)
) ENGINE=MyISAM DEFAULT;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 5
Error Number : 1064
Also, I tried installing the fix above
|
Try this:
PHP Code:
CREATE TABLE `vb_nmaps_settings` (
`varname` varchar(100) NOT NULL,
`set_value` varchar(25) NOT NULL,
PRIMARY KEY (`varname`)
);
This should fix the sql problem. If not, PM me and I will recheck.