-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Windows 10 support + Query parameters e.g. select * from t where id < @id + strpart(str, delims, partno), e.g. select strpart('ab-cd-ef', '-', 2) --> 'cd' * Reform Edit data dialog * Generate data for any schema * Minor changes * Fix minor bugs
- Loading branch information
1 parent
f97b87b
commit fc83ba3
Showing
25 changed files
with
754 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Sqlite-gui is a lightweight Windows GUI for [SQLite](https://www.sqlite.org/index.html) powered by C++, WinAPI and [Code::Blocks 17](http://www.codeblocks.org/). <br> | ||
|
||
|[**Download latest version**](https://github.com/little-brother/sqlite-gui/releases/latest)| | ||
|[**Download the latest version**](https://github.com/little-brother/sqlite-gui/releases/latest)| | ||
|-------------------------------------------------------------------------------------------| | ||
|
||
|
||
![View](resources/image.webp) | ||
![View](resources/demo.webp) | ||
|
||
|
||
### Features | ||
|
@@ -15,17 +15,19 @@ Sqlite-gui is a lightweight Windows GUI for [SQLite](https://www.sqlite.org/inde | |
* Database comparison | ||
* Search text in the whole database | ||
* [Workflow manager](https://github.com/little-brother/sqlite-wf) (ETL) | ||
* Quick data references ([video](https://youtu.be/XL1_lFhzLKo)) | ||
* Terminal mode | ||
* Charts | ||
* [Quick data references](https://github.com/little-brother/sqlite-gui/wiki#quick-references) ([video](https://youtu.be/XL1_lFhzLKo)) | ||
* [Terminal mode](https://raw.githubusercontent.com/little-brother/sqlite-gui/master/resources/terminal.webp) | ||
* [Charts](https://github.com/little-brother/sqlite-gui/wiki#charts) | ||
* [Query parameters](https://github.com/little-brother/sqlite-gui/wiki#query-parameters) | ||
* Data generator | ||
* Most usefull extensions are included | ||
* [Extension pack](https://github.com/little-brother/sqlite-gui/wiki#extensions) | ||
* Demo database "Bookstore" for beginners | ||
* Does not require installation | ||
|
||
### Cons | ||
* Only utf-8 is supported | ||
* NULL is displayed as an empty string and an empty string is set to NULL when data is edit | ||
* The application is a single threaded. Therefore, the interface freeze on long operations | ||
|
||
If you like the project, press the like-button [here](https://alternativeto.net/software/sqlite-gui/) or write something in a [Reddit](https://www.reddit.com/r/sqlite/comments/iaao8x/a_new_lightweight_sqlite_tool_for_windows/) topic to support it.<br> | ||
If you have any problems, comments or suggestions, check [Wiki](https://github.com/little-brother/sqlite-gui/wiki) or just let me know <a href="mailto:[email protected]?subject=sqlite-gui">[email protected]</a>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.