Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8201035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T06:39:56+00:00 2026-06-07T06:39:56+00:00

I am creating an application in Microsoft Access. This is for a small database

  • 0

I am creating an application in Microsoft Access. This is for a small database that the customer will run on a desktop. No network of any kind will be involved. All the necessary files to use the database must be on a single desktop computer.

I want to deliver the app to my customer in stages. Most likely I will email the .accdb file to the customer. How do I deliver an update and maintain any data already entered by the customer? Updates may include changes to the table structure as well as to forms.

The answers given to my original question address the issue of changing forms and other UI elements. However, what if I want to add a table or add column to an existing one? How do I seamlessly deliver such changes while preserving as much data as possible on the user’s end?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T06:39:57+00:00Added an answer on June 7, 2026 at 6:39 am

    You absolutely MUST (!) split your database into two parts. A backend part storing the tables (“the database”) and a frontend containing the forms, reports, queries and application logic (“the application”). Link the tables from the backend to the fontend.

    The frontend might also contain tables with control paramameters, report dictionaries etc., but no data that your customer enters!

    Newer versions of Access have a database splitting wizard.

    You might need a code that automatically links the backend to the fontend on the customers site.


    UPDATE

    You have two possibilities to alter the schema of your database on the customers PC.

    1) Do the Updates through the DAO (or ADOX) object models. e.g.

        Set tdf = db.CreateTableDef("tblNew")
        tdf.Fields.Append tdf.CreateField("fieldname", dbText)
        ...
        db.TableDefs.Append tdf
    

    2) Use DDL queries

        CREATE TABLE MyNewTable (
          ID AUTOINCREMENT,
          Textfield    TEXT(50),
          LongField    LONG,
          ...,
          CONSTRAINT PK_MyNewTable PRIMARY KEY (ID)
        )
    

    Or

        ALTER TABLE SomeExistingTable ADD COLUMN Newcolumn Text(50)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating an application that will run code in a sandboxed environment. This environment
I am creating a VB.net application that will connect to a Microsoft SQL database.
I'm currently creating an application for a customer that will allow them to automatically
I am creating an application that works like the 'wizard' component of some microsoft
I will be creating an Application that will be showing the Products in a
I am new in creating application using Visual Studio 2010 and Microsoft Access 2007.
I am creating an In/Out system tray application that interacts with the Microsoft Lync
I've been creating an application using Visual Studio 2010 C# and Microsoft Access 2007.
I'm creating an application that allows the user to store information about their classes.
I've got an ASP.NET application that I installed by creating a web setup. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.