R
rotor
Hello, Okay, I'm new
I ran the following code which creates a simple table, but when it's done, the table is not visible. What else do I need to do to make this table visible
Dim strSQL As Strin
strSQL = "CREATE TABLE TestTable1
strSQL = strSQL & "(TestField1 INTEGER CONSTRAINT pk PRIMARY KEY,
strSQL = strSQL & "TestField2 VARCHAR(5) NULL)
CurrentDb.Execute strSQ
Thanks in advance for the assistance.
I ran the following code which creates a simple table, but when it's done, the table is not visible. What else do I need to do to make this table visible
Dim strSQL As Strin
strSQL = "CREATE TABLE TestTable1
strSQL = strSQL & "(TestField1 INTEGER CONSTRAINT pk PRIMARY KEY,
strSQL = strSQL & "TestField2 VARCHAR(5) NULL)
CurrentDb.Execute strSQ
Thanks in advance for the assistance.