RE: errors 2006 and 2000

2001-09-14 Thread toby coffey
15:06 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: errors 2006 and 2000 > > create table saveMovie ( > -> id int not null auto_increment, You attempted to create a table without telling MySQL which database to use (or without creating a database in the first place). Eit

RE: errors 2006 and 2000

2001-09-13 Thread toby coffey
PROTECTED] Subject: RE: errors 2006 and 2000 > > create table saveMovie ( > -> id int not null auto_increment, You attempted to create a table without telling MySQL which database to use (or without creating a database in the first place). Either: \u MyDatabaseName

RE: errors 2006 and 2000

2001-09-13 Thread Jay Fesco
> > create table saveMovie ( > -> id int not null auto_increment, You attempted to create a table without telling MySQL which database to use (or without creating a database in the first place). Either: \u MyDatabaseName -OR- create database MyDatabaseName; \u MyDatabaseName; before t