Quote:
I just installed MySQL. Here is what I did:
create database mytest;
use mytest;
create table Member
(
username varchar(32),
pass varchar(32)
);
|
as expected, I realized that there's nothing that let the query know which table to use. But I set the default schema to my database name though...

It did works well.. Thanx a lot
