Andrew Houghton
Andrew Houghton
I have a large database (millions of rows) and need to pull select data subsets out and combine with other RDF data. I can pull this data subset by creating...
Unfortunately, this project seems dead. It offered a nice simple solution, but I punted a while ago, and moved to using VSCode with the MPE extension. A cmd script pulls...
In changing my code to meet local conformance guidelines, I discovered that the first example didn't specify the types for the optional parameters, e.g., `Optional optGlobal As Boolean`. When doing...
Not sure what you are asking, but the ND code is in the git repository. Personally, I have cloned and enhanced ND for my purposes and have sent a pull...
As a quick fix, the next time you release a new version, build SQLite with the `SQLITE_ENABLE_HIDDEN_COLUMNS` option. Also it would be nice if you compile SQLite to a DLL...
I'm using 3.3.2 and having a heck of a time downloading 3.3.3. Every which way I try Chrome blocks me with: Your connection is not private Attackers might be trying...
I put an HTTP debug proxy on my connection. The reason downloading the latest release fails probably has to do with Microsoft and github. Only Microsoft would do something so...
I was curious about coverage of SQLite math function vs. MySQL. Here is a reference table which assumes SQLite was compiled with the `-DSQLITE_ENABLE_MATH_FUNCTION` and `-DSQLITE_HAVE_C99_MATH_FUNCS` options. There are a...
Not sure why the options are not specified on the compile page, but suspect the documentation hasn't been updated. I would query the SQLite developers about that. The `-DSQLITE_ENABLE_HIDDEN_COLUMNS` option...
As far as differences between MySQL vs SQLite, it's important to know the differences when you are porting SQL from either environment to the other, as I often do. It's...