create table

jl39775

Registered User.
Local time
Today, 18:51
Joined
Dec 12, 2001
Messages
43
I am trying to create a table in vba docmd.execute("create testing (test1 char(2))"). It seems the the create statement doesn't work in access 2002. I've used it with oracle. I need a statement that will do this. Please help.

James
 
I found my problem table was missing
this is how you do it.
("create table testing (test1 text(2))").

this is how not to do it.
("create testing (test1 char(2))").

James
 

Users who are viewing this thread

Back
Top Bottom