vote up 1 vote down star

I need to version control a Microsoft Access 2007 database and application. Currently everything is contained in a single mdb file.

The application includes:

  • Forms
  • VBA code
  • Actual database

I would assume I need to separate the database from the forms/code. I would like to be able to version control the forms/code as text to support version diffs.

At the moment I don't have access to SourceSafe (I heard there may be some access support) so I would prefer a solution that would work with subversion or git.

flag

4 Answers

vote up 1 vote down check

Access 2007 has a feature where you can split a DB into its Tables/Queries (backend) and Forms/Reports (front-end). Since your question mentions only version controlling the forms and modules, this might be a more elegant solution. I don't know where modules go after the split, so that might be a stumbling block.

Microsoft offers VSTO (Visual Studio Tools for Office), which will let you develop in VS and run version control via any VS plugin (CVS/SVN/VSS/etc.).

Finally, you can just directly connect to Visual Source Safe. This MSKB article has some good information and background to go through, while this Office Online article is designed for getting you up and running.

Ultimately, I would suggest against taking the code out of Access if at all possible. Assuming the VBA editor is your primary development environment, you'll be adding extra steps to your development process that cannot easily be automated. Every change you make will need to be manually exported, diff'd, and stored, and there is no Application.OnCompile event that you could use to export the changes. Even tougher, you'll have to manually import all changed source files from other developers when they do checkins.

link|flag
I agree...it is looking like leaving everything in Access is probably the best route. I am going to split the file. Will just have to keep verbose check in comments when modifying the code. Looking forward to migrating this thing to something a little more developer friendly :) – Jesse Jul 10 at 14:45
Bonus point for several of these methods -- they pass the Joel Test for having an automated build process. – A. Scagnelli Jul 10 at 17:48
vote up 1 vote down

I use the code below to extract the vba code from Excel files, you may be able to modify this to extract from Access.

Sub ExtractVBACode(strSource, objFSO, strExportPath, objLogFile)
Dim objExcel
Dim objWorkbook
Dim objVBComponent
Dim strFileSuffix
Dim strExportFolder


Set objExcel = CreateObject("Excel.Application")

objExcel.Visible = true

Set objWorkbook = objExcel.Workbooks.Open(Trim(strSource))

strExportFolder = strExportPath & objFSO.GetBaseName(objWorkbook.Name)

If Not objFSO.FolderExists(strExportFolder) Then
    objFSO.CreateFolder(strExportFolder)
End If

For Each objVBComponent In objWorkbook.VBProject.VBComponents
    Select Case objVBComponent.Type
        Case vbext_ct_ClassModule, vbext_ct_Document
            strFileSuffix = ".cls"
        Case vbext_ct_MSForm
            strFileSuffix = ".frm"
        Case vbext_ct_StdModule
            strFileSuffix = ".bas"
        Case Else
            strFileSuffix = ""
    End Select
    If strFileSuffix <> "" Then
        On Error Resume Next
        Err.Clear
        objVBComponent.Export strExportFolder & "\" & objVBComponent.Name & strFileSuffix
        If Err.Number <> 0 Then
            objLogFile.WriteLine ("Failed to export " & strExportFolder & "\" & objVBComponent.Name & strFileSuffix)
        Else
            objLogFile.WriteLine ("Export Successful: " & strExportFolder & "\" & objVBComponent.Name & strFileSuffix)
        End If
        On Error Goto 0
    End If
Next

objExcel.DisplayAlerts = False
objExcel.Quit

End Sub

Can you extract the forms as XML perhaps?

link|flag
Interesting idea...I can play around with it a little later. How easy is it to round trip it though? Ideally I would like to be able to go from checkout to working on the code without too much of a hassle. Thanks for the answer. – Jesse Jul 6 at 21:06
The round trip is all manual (importing/exporting). You can export the forms as code, but you'll still need to do those manually. – A. Scagnelli Jul 7 at 14:50
vote up 0 vote down

Visual Source Safe seems to be the only option when using the developer extensions as it does not recognize my installed tortoise subversion client.

Am I missing something?

link|flag
Please post this as a new question. – Jesse 8 hours ago
vote up 0 vote down

I was just about to post this same question and found this thread. However no one really answered it well enough for me. I dont want to use Source Safe but rather want to use SVN. How do I split out things from my MDB or use VSTO to open my MDB in Visual Studio. I use a SVN client in VS if it is possible to use VS to treat my access DB as a project.

link|flag
Please post this as a new question. – Jesse 8 hours ago

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.