DD

Results 14 comments of DD

If this is as common, then having an _counter_ example that demonstrates doing it _wrong_, explaining **why** it's wrong, with a fixed version (as separate file to diff with, or...

Hi Ben. Was looking at the changes, and noticed you used system-calls for locking, thus bypassing the SQLite VFS. I guess that implies Litestreams assumes the SQLite VFS must also...

FWIW, there are two ways to support CMake in a project: 1) Build the project itself with CMake. 2) Allow other CMake-based projects to consume easily your project, as a...

I'm running Symantec (on Win7), and it too prevents me from running the downloaded exe, because it's unsigned. The file is even deleted from the Downloads folder... I assume Firefox...

Ideally cargo itself would allow easy code signing, which implies support for signing in the tools it forks. Should be as simple as updating the Cargo.toml, no?

Hi Alex. Just read in your _Capitalism_ issue that you are hard at work on WebTransport over HTTP/3. Can you share what the client will be for testing? And whether...

Anyone? Are APE binaries _**really**_ compatible with Windows (10 or 11) 64-bit? That's not my experience so far, but it could be user error somehow, thus my asking here.

Is that even possible, to have different encodings per-column or per-table? PostgreSQL and Oracle has a single per-DB encoding for storage. And another for each session. It's typically highly recommended...

Just a quick comment to mention that `std::variant` default-constructs to its first type's default value. Thus I think typically, `std::monostate` (or `std::nullptr_t`) should be your first rather than last type....

> `SELECT` statements should not change the schema Well, they do. When you `select load_extension('Foo')`, which is the official way to dynamically load an extension. Extensions register functions (and vtab...