Re: CREATE TABLE issue?

2002-12-20 Thread Paul DuBois
At 17:13 + 12/20/02, Jeff Snoxell wrote: Hi again :) I found the following mysql stuff in the MySQL manual in a section explaining how to do relationships. CREATE TABLE persons ( id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, name CHAR(60) NOT NULL, PRIMARY KEY (id) ); CREATE

RE: CREATE TABLE issue?

2002-12-20 Thread Adolfo Bello
Missing TYPE=INNODB in create table statement. MySQL parses references for type MyISAM but doesn't use them. Adolfo -Original Message- From: Jeff Snoxell [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 1:14 PM To: [EMAIL PROTECTED] Subject: CREATE TABLE issue? Hi