How do i backup and restore MS Access Database with Visual Basic
backup and restore MSAccess in vb
Collapse
X
-
Tags: None
-
Originally posted by BindurajanHow do i backup and restore MS Access Database with Visual Basic -
actually my need is to restore data of older mdbfile to new mdb.new mdb has
some additonal fields and data.so additonal changes have to retain after restoring data of the older mdb file.Comment
-
Originally posted by Bindurajanactually my need is to restore data of older mdbfile to new mdb.new mdb has
some additonal fields and data.so additonal changes have to retain after restoring data of the older mdb file.Comment
-
Originally posted by willakawillAha. So you are not restoring you are importing the data from one mdb file to another.
Can you tell a medthod to import mdb files using vbComment
-
Originally posted by BindurajanCan you tell a medthod to import mdb files using vb
Code:Do While Not rsOldDB.EOF rsNewDB.AddNew rsNewDB("Column1") = rsOldDB("Column1") rsNewDB("Column2") = rsOldDB("Column2") ... rsNewDB.Update rsOldDB.MoveNext Loop
Comment
-
Originally posted by BindurajanCan you tell a medthod to import mdb files using vbComment
Comment