Andre Pena
Andre Pena

Reputation: 59336

What is a .CDB database file? And how can I read it using C#?

My current mission is to read a .CDB database and dump information from it. My first problem is that.. I don't know what a .CDB database file is. Second, I don't know how to open it as I don't know this extension (incredibly I couldn't find any info on Google). Lastly, I need to code a C# program to read it.

As I don't think there's a driver for this possibly forsaken extension, maybe the solution is to convert it to a more common format before reading it through my own sofware.

Any tips would be apprecitated

Upvotes: 2

Views: 3752

Answers (1)

Alexander Galkin
Alexander Galkin

Reputation: 12534

Look here. Down the page you'll find several implementations how to work with the database. There are .Net version of Python and Ruby you might use to convert the database to a more conventional format.

Upvotes: 2

Related Questions