forked from nalgeon/sqlean
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f87aff
commit 8c65894
Showing
1 changed file
with
48 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
|
||
Distance related functions (Damerau-Levenshtein, Jaro-Winkler , longest common substring & subsequence) implemented as SQLite run-time loadable extension. Any UTF-8 strings are supported. | ||
- https://github.com/schiffma/distlib | ||
|
||
|
||
String distances for sqlite3 | ||
- https://github.com/fernape/sqlite3_distances | ||
|
||
|
||
SQLite3 extensions for approximate string searching | ||
- https://github.com/igorski89/SQLiteFuzzySearch | ||
|
||
Add simple Makefile to SQLite extension `extension-functions.c` by Liam Healy | ||
- https://github.com/codingforfun/sqlite3-extension-functions | ||
- https://sqlite.org/contrib/ (extension-functions.c) | ||
|
||
|
||
|
||
SQLite module to define virtual tables and table-valued functions natively using SQL. | ||
- https://github.com/0x09/sqlite-statement-vtab | ||
|
||
- https://github.com/shawnw/useful_sqlite_extensions | ||
|
||
|
||
|
||
SQLite extension for reversing strings. | ||
- https://github.com/mayflower/sqlite-reverse-string | ||
|
||
SQLite3 encryption that sucks less | ||
- https://github.com/resilar/sqleet | ||
|
||
|
||
An "SQLite extension" that implements the minimum functions to create and handle a GeoPackage version 1.2 | ||
- https://github.com/xnaval/SQLiteExtensions | ||
|
||
|
||
Arrays-for-SQLite | ||
- https://github.com/stephancb/Arrays-for-SQLite | ||
|
||
Group replace function for sqlite3. | ||
- https://github.com/adesys/sqlite3_group_replace_extension | ||
|
||
Dave Addey's SQLite extension for calculating distance using two pairs of latitude/longitude coordinates for use with the sqlite cli. | ||
- https://github.com/cwarden/sqlite-distance | ||
|
||
Clients | ||
- https://hyokai.info/ (big data viewer with plotting) |