1.Dd March 11, 2017 2.Dt SQLITE3_DB_CONFIG 3 3.Os 4.Sh NAME 5.Nm sqlite3_db_config 6.Nd Configure database connections 7.Sh SYNOPSIS 8.Ft int 9.Fo sqlite3_db_config 10.Fa "sqlite3*" 11.Fa "int op" 12.Fa "..." 13.Fc 14.Sh DESCRIPTION 15The sqlite3_db_config() interface is used to make configuration changes 16to a database connection. 17The interface is similar to sqlite3_config() except 18that the changes apply to a single database connection 19(specified in the first argument). 20.Pp 21The second argument to sqlite3_db_config(D,V,...) is the configuration verb 22- an integer code that indicates what aspect of the database connection 23is being configured. 24Subsequent arguments vary depending on the configuration verb. 25.Pp 26Calls to sqlite3_db_config() return SQLITE_OK if and only if the call 27is considered successful. 28.Sh SEE ALSO 29.Xr sqlite3 3 , 30.Xr sqlite3_config 3 , 31.Xr SQLITE_DBCONFIG_MAINDBNAME 3 32