I'm using Python to load data into an embedded SQLite database (i.e. just an SQLite file). Following that, I'm using SQuirreL to connect to the file and analyze the data.
I'd like to be able to use standard deviation as part of my analysis, but SQLite doesn't support this.
I've been able to download and compile the "extension-functions.c" into a DLL, but I'm stuck on figuring out what to do next (or if that's even the right way to go).
I've seen some posts on creating a STDEV function from Python for SQLite, but I don't think that helps for my SQuirreL client (unless an SQLite file created with this function retains such capability when accessed by SQuirreL...?).