Adding a table to backend

S

Silvester

Hi,

I distribute my app as a secured mde fe and mdb backend.

How can I add a table or make structure changes to existing tables on the
end user mdb backend without overwriting their existing data ?
 
D

Douglas J. Steele

I always use DAO, and commands like CreateTableDef and CreateField, although
you could also use ADOX.

For that matter, you can use DDL (Data Definition Language, which is run
like a query), and commands like CREATE TABLE, ALTER TABLE, CREATE FIELD and
ALTER FIELD.
 

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

Top