Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

Mysql Table Column Syntax

Quote Reply
Mysql Table Column Syntax
Can someone tell me what's wrong with this statement, when trying to create a mysql table.

CREATE TABLE dataprofile (
profilenumber char(25) DEFAULT 'profilenumber' NOT NULL,
AdHeadline char(75) DEFAULT 'Headline' NOT NULL,
EmailAddress char(90) DEFAULT 'EmailAddress' NOT NULL,
TelephoneAreaCode char(3) DEFAULT 'TelephoneAreaCode' NOT NULL,
City char(50) DEFAULT 'City' NOT NULL,
StateProvince char(50) DEFAULT 'StateProvince' NOT NULL,
Zip char(6) DEFAULT 'Zip' NOT NULL,
Country char(50) DEFAULT 'Country' NOT NULL,
RelationshipPreference char(50) DEFAULT 'RelationshipPreference' NOT NULL,
SexualPreference char(50) DEFAULT 'SexualPreference' NOT NULL,
Username char(12) DEFAULT 'Username' NOT NULL,
Password char(12) DEFAULT 'Password' NOT NULL,
VerifyPassword char(12) DEFAULT 'VerifyPassword' NOT NULL,
SmokingPreference char(50) DEFAULT 'SmokingPreference' NOT NULL,
DrinkingPreference char(50) DEFAULT 'DrinkingPreference' NOT NULL,
MaritialStatus char(50) DEFAULT 'MaritialStatus' NOT NULL,
HaveChildren char(50) DEFAULT 'HaveChildren' NOT NULL,
BodyBuild char(50) DEFAULT 'BodyBuild' NOT NULL,
Height char(50) DEFAULT 'Height' NOT NULL,
Religion char(50) DEFAULT 'Religion' NOT NULL,
Race char(50) DEFAULT 'Race' NOT NULL,
AstrologicalSign char(50) DEFAULT 'AstrologicalSign' NOT NULL,
Age char(3) DEFAULT 'Age' NOT NULL,
Occupation char(50) DEFAULT 'Occupation' NOT NULL,
MiscComments Blob(1900) DEFAULT 'MiscComments' NOT NULL,
PRIMARY KEY(Username,EmailAddress)
);


The error I get back is having to do with the blob statment near the bottom, have I not written it correctly?

Im sorry I wrote to the links sql forum, but some of you folks are the brightest folks I know with regards to programming, cgi and sql.

I appologize if it has offended anyone with my topic.
Visionary
Subject Author Views Date
Thread Mysql Table Column Syntax Visionary 3042 Nov 22, 1999, 11:14 AM
Post Re: Mysql Table Column Syntax
Fortune 2976 Nov 22, 1999, 4:48 PM
Post Re: Mysql Table Column Syntax
pugdog 2972 Nov 22, 1999, 8:22 PM
Post Re: Mysql Table Column Syntax
Visionary 2962 Nov 22, 1999, 8:36 PM
Post Re: Mysql Table Column Syntax
pugdog 2968 Nov 23, 1999, 11:29 AM
Post Re: Mysql Table Column Syntax
dearnet 2977 Nov 23, 1999, 12:05 PM
Post Re: Mysql Table Column Syntax
pugdog 2966 Nov 23, 1999, 1:52 PM
Post Re: Mysql Table Column Syntax
dearnet 2959 Nov 24, 1999, 10:11 AM