Link table

  • Thread starter Thread starter Marc R.
  • Start date Start date
Hello,

Is there a way to create a link table without ADOX?

Thank you

Ummmm... yes, several. Use the user interface; use VBA with the (DAO)
CreateTable method; run a MakeTable query...

Context? What version of Access? What are you trying to accomplish, starting
from what, and why the concern about ADOX?
 
Marc R. said:
Hello,

Is there a way to create a link table without ADOX?

Yes, several ways. One way is to use DDL (Data Definition Language) in a SQL
statement (query):

CREATE TABLE tblContacts
([ContactID] counter,
[LastName] text (30),
[FirstName] text (30),
[ContactDate] date,
[Notes] memo,
CONSTRAINT [ContactID] PRIMARY KEY ([ContactID]));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top