Is there a query function for these and other config settings? I see no sqlite3_config_get() in sqlite3.h.
On Fri, Jan 3, 2020 at 11:36 AM Keith Medcalf <[email protected]> wrote: > On Friday, 3 January, 2020 09:30, [email protected] wrote: > > >I get SQLITE_MISUSE when attempting > >sqlite3_config(SQLITE_CONFIG_MEMSTATUS, 0); > >immediately after opening a db connection? > >My connection has THREADSAFE = 1. > > That is correct. You must configure the library before it is initialized, > not after. > > https://sqlite.org/c3ref/config.html > > -- > The fact that there's a Highway to Hell but only a Stairway to Heaven says > a lot about anticipated traffic volume. > > > > _______________________________________________ > sqlite-users mailing list > [email protected] > http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users > _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

