How to backup ms access database in vb.net? We're gonna make a system for a certain company but our teacher doesn't teach us at all, please help. Any idea on how to do it?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 5 down vote accepted
System.IO.File.Copy("C:\Your\original\database.mdb", String.Format("D:\BackUps\{0:yyyyMMdd}.mdb", Date.Today))

Using openDialog As New OpenFileDialog()
    openDialog.CheckFileExists = True
    openDialog.CheckPathExists = True
    openDialog.Filter = "Microsoft Access Database (*.mdb)|*.mdb"

    Using saveDialog As New SaveFileDialog()
        saveDialog.CheckFileExists = False
        saveDialog.CheckPathExists = True
        saveDialog.FileName = Date.Now.ToString("yyyyMMdd") & ".mdb"
        saveDialog.Filter = "Microsoft Access Database (*.mdb)|*.mdb"

        If openDialog.ShowDialog() = Windows.Forms.DialogResult.OK AndAlso saveDialog.ShowDialog() = Windows.Forms.DialogResult.OK Then
            If File.Exists(openDialog.FileName) Then File.Copy(openDialog.FileName, saveDialog.FileName)
        End If
    End Using
End Using
link|improve this answer
1  
That's it. An Access database is just a Windows file, to do a backup just copy the file (either to a CD, DVD, external drive, or on a backup server). – Meta-Knight Dec 28 '09 at 15:19
1  
A file-system copy of a Jet/ACE data file may or may not be valid. It depends on whether or not users have it open and in a state that won't be properly copyable. The only reliable way to back it up is via the Jet/ACE database engine, which will never create an inconsistent copy. – David-W-Fenton Dec 28 '09 at 22:00
@David: The question was, how to back it up...well, that's one way of doing it (at least in my eyes). He never specified any conditions to match. – Bobby Dec 28 '09 at 22:59
thanks! maybe I could slightly change the code that you gave so that I could make it work with an open file dialog box? – user225269 Dec 29 '09 at 23:03
2  
I would assume that if you want to backup a file, you want that backup to be usable. Doing it with a file system copy may work 99% of the time, but it's that other 1% that's going to be an issue. – David-W-Fenton Dec 30 '09 at 1:05
show 10 more comments
feedback

Your Answer

 
or
required, but never shown

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