Click here to Skip to main content
Sign Up to vote bad
good
See more: C#VB.NET
Hi to All,
 
How to Backup .mdb file Using .Net Windows Application.
 
Help me...
Posted 30 Nov '11 - 20:51


3 solutions

Google is your friend: Be nice and visit him often. He can answer questions a lot more quickly than posting them here...
Your question subject:
http://www.google.co.uk/search?gcx=w&sourceid=chrome&ie=UTF-8&q=Backup+.mdb+File+Using+.Net+Windows[^]
Found:
http://social.msdn.microsoft.com/Forums/en-US/vbgeneral/thread/0dacf318-24fa-4962-91b5-69a246c6684d/[^]
  Permalink  
Try this code :
Public Sub BackUpInformation()
        Source = Application.StartupPath & "\DataBaseName.mdb"       'Path where DataBase actually Stored
        Path = "New Path to Save Backup"                
        If GetPath.ToString = "" Then       'If Path is Not set
            'Do Nothing
        Else                                'If Path is set
         Try
           File.Copy(Source, Path & "\DataBaseNameBackUp.mdb", True)  'Copying file to the Destination
         Catch ex As Exception
           MessageBox.Show(ex.ToString)     'Providing Error Message
         End Try
        End If
    End Sub
I hope it will help you. Smile | :)
  Permalink  
Comments
Marcus Kramer - 1 Dec '11 - 11:32
You can't just copy the mdb file. You have to first make sure that the db is not in use if you want to do it this way which will require shutting down the SQL Server, or Access server depending on which is being used.
Zoltán Zörgő - 29 Sep '12 - 16:30
Sorry, Access server? What's that?
Manoj K Bhoir - 30 Sep '12 - 23:54
So Do One thing. Before Calling this Method Just Close the Data Base Connection If it is Open. I hope you know how to do this. :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 253
1 Rohan Leuva 220
2 Mahesh Bailwal 190
3 Ron Beyer 180
4 Abhinav S 168
0 Sergey Alexandrovich Kryukov 8,528
1 OriginalGriff 6,819
2 CPallini 3,643
3 Rohan Leuva 2,923
4 Maciej Los 2,288


Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 29 Sep 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid