Hello,
Yes I tried with Access, I tried renaming it to different file types that access will open, no luck!
Main Topics
Browse All TopicsIs it possible to read a database created using Berkley DB-File (a perl Module) in Visual Basic 6?
The DB was created on a linux box running perl, the program produces a database file which was created using the perl module DB-File. I need to copy this database to a win32 machine and read some of the information from it.
I have no problems reading other databases in VB like Access (.mdb) or SQL, but this is format of DB is new to me!
Thanks!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Berkeley default install includes command line utilities that can dump the contents of Berkeley db file to text which you could parse and load into your db.
There are drivers and source code samples for just about every language which uses Berkley DB. We use Berkley extensively from Java, C and Python because of it's extremely high speed inserts. See the vendor site: http://www.sleepycat.com/i
The second issue you will run into is that Berkeley is really only and ISAM rather than a full DB. This is good if you need low level control and high speed but bad if you are used to the DB doing a lot of work for you such as managing columns. The Net result is that after you dump the Berkeley DB file to disk you will have to reverse engineer the line formats so you can parse them out into individual fields and Berkeley DB programmers commonly put many different formats in the same DB file so you will have to detect the differences so you can use a different line parser for each record.
Many Berkley DB programmers store mostly delimited strings as the ISAM data body but it is entirely possible to use binary formats and if so you will need documentation from the original author on the underlying structure of each binary data structure retrieved.
Business Accounts
Answer for Membership
by: TooKoolKrisPosted on 2003-11-29 at 10:36:23ID: 9843021
Access won't read it at all if you try open it? Tried to find you an ADO connection string for it on the Net but nothing is out there for VB. Most of what I've seen is in Perl obviously and some in Python.
Good Luck