Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Viewer/Query Analyzer for SQLite databases [closed]

I've been using SQLite databases for development for a while now and I thought it would be useful to just view the contents of the generated db file. Are there any good tools out there for viewing SQLite db files and/or tools for running queries against them?

like image 737
jamesaharvey Avatar asked Apr 12 '10 18:04

jamesaharvey


People also ask

How do I open a .SQLite file?

Open a command prompt (cmd.exe) and 'cd' to the folder location of the SQL_SAFI. sqlite database file. run the command 'sqlite3' This should open the SQLite shell and present a screen similar to that below.

How can I see all SQLite databases?

To show all databases in the current connection, you use the . databases command. The . databases command displays at least one database with the name: main .


2 Answers

Here are a few free tools:

  • SQLite Manager (Firefox plugin)
  • SQLite Administrator
  • SQLiteSpy
  • SQLite Database Browser

I prefer SQLite Administrator, and occasionally use the Firefox version. There are other commercial options too.

like image 124
ars Avatar answered Oct 14 '22 07:10

ars


SQLite Database Browser.

like image 33
Darin Dimitrov Avatar answered Oct 14 '22 08:10

Darin Dimitrov