Database backup

Joined
Sep 6, 2007
Messages
7
Programming Experience
Beginner
Hello everyone,

I am building a window's based application and my client wants to take backup of his database(Through code). I am using VB.NET and VS 2005.
Can any one tell me the procedure or code how to do it.

It's Urgent
So please help me out.
Thanks in advance.
 
You could simply use the filesystem to copy the .mdb file.

VB.NET:
File.Copy("c:/db.mdb", "c:/db.bak")
 
Back
Top