SQLite playground with extensions
Sqlime is an open source SQLite playground for debugging and sharing SQL snippets.
It runs a real SQLite instance in the browser and supports most of its features, including standard functions: general purpose, date/time, math, aggregation and windows.
SQLite has fewer of these functions than PostgreSQL, for example. That's why I have a whole separate project — Sqlean — dedicated to adding the missing ones.
What I always wanted was to bring the two together and make Sqlean's extensions available in Sqlime. And I've finally done it! Now Sqlime offers over 70 additional functions from the following domain modules:
- crypto: Hashing, encoding and decoding data.
- define: User-defined functions and dynamic SQL.
- fuzzy: Fuzzy string matching and phonetics.
- ipaddr: IP address manipulation.
- regexp: Pattern matching using regular expressions.
- stats: Math statistics — median, percentiles, etc.
- text: Powerful Unicode-aware string functions.
- uuid: Universally Unique IDentifiers.
Give it a try!
Try the playground or view the functions
★ Subscribe to keep up with new posts.