Synchronize your Access Forms, Macros, Modules, Queries, and Reports with a version control system.
This code is built and tested on Microsoft Access 2010. It will probably work in earlier versions, but YMMV.
The Microsoft Access code module in this project provides functions to export and import all of your Access objects to plain text files so that you can use a version control tool to track changes in these objects. For Access objects which are normally exported in UCS-2-little-endian
encoding , the included module automatically converts to the source code to and from UTF-8
encoding during export/import; this is to ensure that you don't have trouble branching, merging, and comparing in tools such as Mercurial which treat any file containing 0x00 bytes as a non-diffable binary file.
This README shows how to synchronize all application code objects from an Access application with a source control system such as Mercurial or Git. (The provided import/export module is agnostic about the actual source control system you use.)
Included in the export/import:
- Queries
- Forms
- Reports
- Macros
- Modules
- Tables
By default, no Tables are exported. You must specify which tables to include in the export/import process. For example you might have "Countries" or "Colors" tables that populate dropdown lists. You shouldn't include regular data tables containing actual records, because this data doesn't belong in version control.
Not included in the export/import:
- Customized toolbars, toolbar items, and menu items
- Any external files
- Pretty much anything that is not accessible by browsing the design, properties, and code of a Query, Form, Report, Macro, or Module object.
For the purposes of these instructions, assume your database is called Application.accdb
and it is stored in ~/MyProject
.
- Load
AppCodeImportExport.bas
into a new module in your database with that exact name. - Edit your
AppCodeImportExport
and change the constantINCLUDE_TABLES
to list any lookup tables that function more as part of your application code than as client data. (For example, "Countries", "Colors", and things like that.) - Copy the scripts folder as a child of
~/MyProject
.
- Create a repository in your
~/MyProject
folder. - Compact and Repair
Application.accdb
and zip it toApplication.zip
using the Send to Compressed Folder command in Windows Explorer. - Using your repository's tools, set the repository to ignore any
accdb
andlaccdb
files, and then add and commit the zipped Access binary fileApplication.zip
as well as thescripts
folder. Use a commit message like "Initial commit of [name] at version [number]." - Open the application, hit CTRL-G, and run the following VB code in the Immediate window: "
ExportAllSource
". Wait for the Immediate window to say the export job is "Done." - Using your repository's tools, add and commit all the new files that were created in the
source
folder under~/MyProject
. Use a commit message like "Initial commit of all source code for [name] at version [number]". - Publish your repository to your preferred central sharing location.
- Open the application, hit CTRL-G, and run the following VB code in the Immediate window: "
ExportAllSource
". Wait for the Immediate window to say the export job is "Done." - Using your repository's tools, commit all the new files that were created in the source folder under
~/MyProject
. Use an appropriate commit message to describe your changes. - Pull new upstream changes (if any exist) from your central sharing location used by all developers. If necessary address any merge conflicts using your repository's merge and conflict resolution tools. If any work was done in this step, commit these changes to your local repository as well.
- Push all local and merged changes back to the central sharing location.
- Go back into the Access Immediate window (CTRL-G) and run the following VB code: "
ImportAllSource
". Wait for the Immediate window to say the export job is "Done."
- There may be application changes that aren't covered in the source code for Forms, Macros, Modules, Queries, and Reports. To make sure these changes are recorded, Compact and Repair
Application.accdb
and zip it toApplication.zip
(replacing the old copy) using the Send to Compressed Folder command in Windows Explorer. Commit the newApplication.zip
to your repository with a commit message like "Full application binary for release [number]". - Follow the usual steps in the previous section "Committing New Progress".
- Use your repository's "tag" function to tag your last commit with the release number/name.
- If you make any changes to the script used in this process, the
AppCodeImportExport
module, they will not be automatically imported when any developer runs the ImportAllSource method. The code skips this file because it causes a conflict when trying to update a module that is actively being executed. - The import and export code does not handle deleted objects. When you notice that a developer upstream has pushed a change that deletes an Access object, you must manually delete that object in your own copy of the database file, and be sure it's not exported again and re-added to the repository.