SQLite3 programming language image -- Official Referrence of SQLite3: https://hub.docker.com/r/esolang/sqlite3
A collection of Recipes from Python SQLite docs by Redowan Delowar
These links are to supporting text and code resources in his excellent essay "Recipes from Python SQLite docs" at https://rednafi.github.io/reflections/recipes-from-python-sqlite-docs.html. The use cases that it covers include:
- Executing individual statements
- Executing batch statements
- Applying user-defined callbacks
- Applying user-defined scalar functions
- Printing traceback when a user-defined callback raises an error
- Transforming types
- Implementing authorization control
- Changing the representation of a row
- Creating custom collation
- Registering trace callbacks to introspect running SQL statements
- Backing up a database
- Implementing a full text search engine