>
> 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 trying to create a table.

Jay Fesco

Magical Mystery Words: database,sql,query,table



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to