-
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.
+ crc32 and md5 function to ora-extension + Rows duplication * Improve view/edit for multiline values * Up SQLite to 3.34.0
- Loading branch information
1 parent
55e86db
commit 3f46dbc
Showing
14 changed files
with
2,540 additions
and
897 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 |
---|---|---|
|
@@ -23,5 +23,29 @@ Recent binaries are available at [Releases page](https://github.com/little-broth | |
* Only utf-8 is supported | ||
* NULL is displayed as an empty string and an empty string is set to NULL when data is edit | ||
|
||
|
||
<details> | ||
<summary>How to build</summary> | ||
|
||
* sqlite3.dll + sqlite3.def | ||
``` | ||
gcc -shared -Wl,--output-def=sqlite3.def sqlite3.c -o sqlite3.dll -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_COLUMN_METADATA -s -O | ||
``` | ||
* libsqlite3.a | ||
``` | ||
dlltool -d sqlite3.def -l libsqlite3.a -D sqlite3.dll | ||
``` | ||
* Extension e.g. `json1` | ||
``` | ||
gcc -I ../include -g -shared json1.c -o json1.dll -s | ||
``` | ||
`series.c` and `regexp.c` should be compiled with additional flag `-Os` to minimize [VirusTotal alerts](https://github.com/little-brother/sqlite-gui/issues/3) | ||
* Use Code::Blocks 17 to build the app. | ||
</details> | ||
If you liked the project, press the like-button [here](https://alternativeto.net/software/sqlite-gui/) to support it.<br> | ||
If you have any problems, comments or suggestions, just let me know <a href="mailto:[email protected]?subject=sqlite-gui">[email protected]</a>. |
This file was deleted.
Oops, something went wrong.
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.