Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cbess/sqbrowser
SQLite Query Browser for any text editor. Uses wxPython 2.8+
https://github.com/cbess/sqbrowser
database python sql sqlite wxpython
Last synced: about 1 month ago
JSON representation
SQLite Query Browser for any text editor. Uses wxPython 2.8+
- Host: GitHub
- URL: https://github.com/cbess/sqbrowser
- Owner: cbess
- Created: 2011-09-10T20:27:51.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2015-03-13T14:51:45.000Z (over 9 years ago)
- Last Synced: 2024-04-14T15:44:21.820Z (7 months ago)
- Topics: database, python, sql, sqlite, wxpython
- Language: Python
- Homepage:
- Size: 159 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# SQBrowser
SQLite3 query browser that can be used with any text editor.
Uses wxPython 2.8+ 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.
It uses file monitoring to execute the query upon save and then update the results.
![screenshot](http://1.bp.blogspot.com/_pVeh7_7SuSg/SxxflsbAKAI/AAAAAAAAACs/ukjFeOLrluE/s320/sqbrowser-screenshot.png)
## Setup/Usage
1. Grab the code from git
1. execute: `python main.py`
1. Set the **db** file
1. Set the **SQL** file
1. Open the SQL file in your favorite editor, modify it
1. 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)```sql
--returns
SQL CODE HERE (only this block is executed)
--return
SQL CODE HERE
--return
```## License
GPL v3