Hi
I need to read rows from a database file (.wdb) to a datagrid.
It's a cache file for world of warcraft or a database file for MS Works.
File Extension .WDB Details
Does anyone have an idea ?
VB.net or C#
Thanks
Hi
I need to read rows from a database file (.wdb) to a datagrid.
It's a cache file for world of warcraft or a database file for MS Works.
File Extension .WDB Details
Does anyone have an idea ?
VB.net or C#
Thanks
Use a binary reader and file stream to read them. Every cache file has a header to read from before the actual data. Go to wowwiki and search for "wdb" and it should give you info on it. What I used to do is make a base class called "CacheBase" thats a binary reader with properties / reads header / some other small things then derive that for all other cache files and write it to a file.