// ConfigUri enables or disables URI handling. // (See sqlite3_config(SQLITE_CONFIG_URI): http://sqlite.org/c3ref/config.html) func ConfigUri(b bool) error { rv := C.goSqlite3Config(C.SQLITE_CONFIG_URI, btocint(b)) if rv == C.SQLITE_OK { return nil } return Errno(rv) }
// ConfigMemStatus enables or disables the collection of memory allocation statistics. // (See sqlite3_config(SQLITE_CONFIG_MEMSTATUS): http://sqlite.org/c3ref/config.html) func ConfigMemStatus(b bool) error { rv := C.goSqlite3Config(C.SQLITE_CONFIG_MEMSTATUS, btocint(b)) if rv == C.SQLITE_OK { return nil } return Errno(rv) }