Convert .mdb file into .dat

discuss

New member
Joined
Aug 22, 2006
Messages
1
Programming Experience
Beginner
hihow to convert *.mdb files into *.dat files..pleasethanksregards
 
.dat files is not a standard format, usually means some kind of 'data', they can be anything and any application can make up their own data structure.
 
Just change the suffix of your MDB file to .DAT. For example MyData.MDB can be named MyData.DAT and you can open the access file ending in .DAT in your code. This keeps some people from opening the database as they don't know it's a MS Access file. If that's what you're asking.
 
Back
Top