Hi,

I 've got problem opening a Table which I've just created.
Here is what I did:

cmd.CommandText = "Create Table "Employees" (Name char(255),Adrr char(255))
cmd.Execute

--->Here if i go to my database, I can see "Employees" table there.
--->Now, I want to open this table to add records to it

rs.Open "Employees", cnn,,,adCmdTable

---> I 've got error
Note: I have no problem opening other Tables which already exists
in the database. Only with new Tables that problem occurs.........

THanks