2

I have copied the db file of my android app to my desktop pc. There are some windows applications that read the content of SQLite files like "SQLite Database Browser". Now I want to read the content of db files in my own windows application using C# or C++ languages similarly. How can I do that?

Thanks in advance,

Boris Strandjev
  • 46,145
  • 15
  • 108
  • 135
Bob
  • 22,810
  • 38
  • 143
  • 225
  • No need to add the android tag. this is not android specific question. Android SQLite database is just ordinary SQLite database. I am removing the tag. – Boris Strandjev Feb 16 '12 at 07:55

1 Answers1

3

All you need to access your SQLite database in C# should be in the answers there:

What is the best way to connect and use a sqlite database from C#

And the question also mentions the library for C++ (sqlite.h)

Community
  • 1
  • 1
Sébastien
  • 13,831
  • 10
  • 55
  • 70