RE: [sqlite] mySQL to SQLite conversion question

2004-03-24 Thread Peter Pistorius
PM To: [EMAIL PROTECTED] Subject: [sqlite] mySQL to SQLite conversion question I see that the auto_increment keyword is not supported by SQLite: addressid bigint(20) unsigned NOT NULL auto_increment, . . . PRIMARY KEY (addressid)

[sqlite] mySQL to SQLite conversion question

2004-03-24 Thread rich coco
I see that the auto_increment keyword is not supported by SQLite: addressid bigint(20) unsigned NOT NULL auto_increment, . . . PRIMARY KEY (addressid) I understand that I have to move the 'unsigned' keyword (before 'bigint') but I do