Installing/Creating Db Error 1064
-
Hi
The install script returns with a host of My Sql errors of type 1064 (see later). I saw the answers to the other queries about importing/exporting but this is a new install and i can’t seem to use those solutions.
I’m running on MySQL server and client verion 4.x. this is a clean install into a new host.
below is one example run directly into the sql command line. it does not seem to like the like beginning primary key.
All and any help appreciated!
thanks
Simon
SQL query:
CREATE TABLE (
umeta_id bigint( 20 ) NOT NULL AUTO_INCREMENT ,
user_id bigint( 20 ) NOT NULL default ‘0’,
meta_key varchar( 255 ) default NULL ,
meta_value longtext,
PRIMARY KEY ( umeta_id ) ,
KEY user_id( user_id ) ,
KEY meta_key( meta_key )
)MySQL said: Documentation
#1064 – 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 ‘( umeta_id bigint(20) NOT NULL auto_increment, user_id bigint(2
- The topic ‘Installing/Creating Db Error 1064’ is closed to new replies.