Ok, I redid it and tried both of these:
>CREATE TABLE Sabre (
sabreName VARCHAR(20) NOT NULL,
realName VARCHAR(20),
age CHAR(2),
timezone VARCHAR(15),
country VARCHAR(20),
email VARCHAR(30),
AIM VARCHAR(25),
MSN VARCHAR(30),
ICQ VARCHAR(15),
sabreChar VARCHAR(12),
sabreCombat CHAR(3),
otherChar VARCHAR(12),
extra BLOB(500),
PRIMARY KEY (sabreName);
)
And
>CREATE TABLE Sabre (
sabreName VARCHAR(20) NOT NULL,
realName VARCHAR(20),
age CHAR(2),
timezone VARCHAR(15),
country VARCHAR(20),
email VARCHAR(30),
AIM VARCHAR(25),
MSN VARCHAR(30),
ICQ VARCHAR(15),
sabreChar VARCHAR(12),
sabreCombat CHAR(3),
otherChar VARCHAR(12),
extra BLOB(500),
PRIMARY KEY (sabreName)
);
Neither of those worked. It won't work putting the table in which MySQL-Front, either.
I'm not quite sure what could be going wrong, it's giving me the same error.