▲ | bob1029 a day ago | |
This is the API used: https://www.sqlite.org/appfunc.html You can build really powerful domain-specific SQL scripting engines using this interface. The functions bound to SQL can be anything. They do not have to be deterministic or free of side effects. Microsoft has a really good provider & docs around how to use this with .NET/C#: https://learn.microsoft.com/en-us/dotnet/standard/data/sqlit... |