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
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
>
> 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