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
  • 45,192
  • 14
  • 103
  • 128
Bobs
  • 22,419
  • 38
  • 141
  • 223
  • 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
  • 12,506
  • 9
  • 50
  • 68