I’m trying to include a database of information that would be part of the application for retrieval.
I’m looking at the SQLite3 package, but it looks like it’s meant to keep data on system that I could write to, which is great for other purposes, but I’d like to keep a collection of data that would only update if the user updates the app.
I could write the database onto the system the first time it runs (which I don’t like)
or I could create the data collection as a big table inside a lua file.
any other ideas?