How to access SQLite database?

0

I have run BinDiff on two binary files, and stored the results in a .BinDiff file. (Which the manufactures assure me is just an SQLite database. How would I open and access this database?

user3119546

Posted 2014-01-06T17:32:38.317

Reputation: 123

1

It depends on what you are trying to do. Normally, you should be using the tools that BinDiff provides. If you want to examine the information manually, then you can use any SQLite program like the default SQLite tools, or a third-party viewer.

– Synetech – 2014-01-06T17:36:27.300

You can even use the SQLite firefox extension!

– m4573r – 2014-01-06T17:42:28.360

Thank you, I am now just having trouble with the data moving from one application to another. I think this may be a problem with my BinDiff. – user3119546 – 2014-01-06T17:48:33.600

Is there a way to view it via linux terminal? – user3119546 – 2014-01-06T17:54:47.433

Answers

0

You could use Microsoft Access to do this (Look here) or use a SQLite Database Browser (For example here). As @Synetech said you can of curse use the standard tools to access the database too.

Kimmax

Posted 2014-01-06T17:32:38.317

Reputation: 335