dlang-community / d2sqlite3

A small wrapper around SQLite for the D programming language
Boost Software License 1.0
75 stars 26 forks source link

Add possibility to configure db connection #35

Closed tchaloupka closed 7 years ago

tchaloupka commented 7 years ago

Didn't find a way to call sqlite3_db_config so I've added it.

biozic commented 7 years ago

The function is here. There is no unittest, though, you can add yours.

tchaloupka commented 7 years ago

But it isn't the same one. That is for global settings using sqlite3_config, but this one is for setting of just the actual connection using sqlite3_db_config

See https://sqlite.org/c3ref/config.html vs https://sqlite.org/c3ref/db_config.html

biozic commented 7 years ago

Oh right. So it's nice to have, indeed.