| SQLITE3SESSION_CONFIG(3) | Library Functions Manual | SQLITE3SESSION_CONFIG(3) |
sqlite3session_config —
configure global parameters
#include
<sqlite3.h>
int
sqlite3session_config(int op,
void *pArg);
The sqlite3session_config() interface is used to make global configuration changes to the sessions module in order to tune it to the specific needs of the application.
The sqlite3session_config() interface is not threadsafe. If it is invoked while any other thread is inside any other sessions method then the results are undefined. Furthermore, if it is invoked after any sessions related objects have been created, the results are also undefined.
The first argument to the sqlite3session_config() function must be one of the SQLITE_SESSION_CONFIG_XXX constants defined below. The interpretation of the (void*) value passed as the second parameter and the effect of calling this function depends on the value of the first parameter.
This function returns SQLITE_OK if successful, or an SQLite error code otherwise.
These declarations were extracted from the interface documentation at line 12680.
SQLITE_API int sqlite3session_config(int op, void *pArg);
| January 24, 2024 | NetBSD 11.0 |