On Tuesday, 1 March 2022 at 20:59:46 UTC, data pulverizer wrote:
Hello all,

I'm not sure how to set the compile time parameters in D's SQLite module particular the items that take multiple parameters, for example in the C API manual `SQLITE_CONFIG_MMAP_SIZE` takes two `sqlite3_int64`. How do I set these?

Okay it seems like you are supposed to use the function `sqlite3_config` to configure those elements, for example:

```
sqlite3_config(SQLITE_CONFIG_MMAP_SIZE,
          10_000_000_000, 30_000_000_000);
```

Reply via email to