Hello,
With phpMyAdmin I made a dump of a MySQL database... And now I'm trying to import all the queries in this dump into an empty MS-Access database.
The strange thing is that a command like this works perfectly:
CREATE TABLE animals (race int);
But when I make it into this:
CREATE TABLE animals (race int(4));
...it claims the instruction CREATE TABLE has a syntax error ('80040e14').
Anyone got a clue what I'm doing wrong?
I've got a headache.