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
hi
i'm totally new to this so you'll have to forgive these questions if they
are really basic.
the situation with my server is that i have a user name that is associated
with a mysql database
i logged in (after telnetting in) as the user using:
mysql -u username -p
i then entered my password