My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Links

Uses wxPython to provide a UI for sqlite database query results. It is different from other SQLite database managers, because it only displays results. This allows you to use your favorite SQL editor to execute SQL queries against the database.

Project source now lives at: https://github.com/cbess/sqbrowser

It uses file monitoring to execute the query upon save and then update the results.

Setup/Usage

  1. Grab the code from downloads or svn
  2. execute: python main.py
  3. Set the db file
  4. Set the SQL file
  5. Open the SQL file in your favorite editor, modify it
  6. Click Execute SQL or tick the Autorun SQL file

Notes

  • It logs all queries in the bottom of the window
  • Click Commit to commit changes to the DB
  • You are able to execute defined blocks of SQL code (see example below)
  • --returns
    SQL CODE HERE (only this block is executed)
    --return
    SQL CODE HERE
    --return
Powered by Google Project Hosting