2

I am wanting to create a script/software that can read/access, then query an edb database file. I am looking at the Windows Indexing file which comes in the form of an edb file. Python doesn't seem to have any modules that I could use to query the database. Do any other languages, such as C++?

BubbleMonster
  • 1,366
  • 8
  • 32
  • 48

2 Answers2

2

There's a special library for accessing .edb files in C: libesedb. They have a repository on Google Code: https://code.google.com/p/libesedb/. Check out their wiki for examples: https://code.google.com/p/libesedb/wiki/libesedb.

Update:

This is the new url: https://github.com/libyal/libesedb

Gautam Jain
  • 6,789
  • 10
  • 48
  • 67
gthacoder
  • 2,213
  • 3
  • 15
  • 17
1

Can you use Iron Python and CLR? If so, check out ManagedEsent and Esedb. http://managedesent.codeplex.com/SourceControl/latest#Esedb/

C Documentation: http://msdn.microsoft.com/en-us/library/windows/desktop/gg269259(v=exchg.10).aspx

-martin

Martin Chisholm
  • 461
  • 2
  • 6