From: Gilles Ganault on
Hello

I'd like to come up with a single binary that would include a www
server as frond-end, the SQLite library as back-end, and a scripting
language so I can write a bit of code to turn POSTed parameters into
SQL queries, forward them to the SQLite library, and return status and
possibly data to the client.

The point is to keep using SQLite because it's good enough for my
needs, but I occasionally need to share a database file among a few
concurrent clients without the need for a full-fledged DBMS like
MySQL. The single binary should run under Windows and Linux.

I don't know TCL at all: By any change, does someone have a basic
tutorial on how to combine the above components into a single binary,
using eg. the Starpack technique.

Thank you for any help.