This directory is the landing page for the SQLite-related examples in the repository. It is intended as an index so you can choose the example that best matches what you want to learn first.
- Lua SQLite Database Tutorial - Recommended starting point.
- Basic Wiki Engine - URL-to-database mapping example.
- SQLite Shared Connection Example - Preferred connection-management example for web-server scenarios.
Open the README in the specific subdirectory you want to run. Each SQLite example starts as its own Mako Server app.
Each subdirectory demonstrates a different SQLite usage pattern: basic form-driven CRUD, URL-based content mapping, or shared-connection behavior under server request load.
- Start with
Tutorial/if you are new to SQLite on BAS. - Move to
Shared-Connection/if your main question is connection management and locking behavior.