1.Dd March 11, 2017 2.Dt SQLITE3_VTAB_CONFIG 3 3.Os 4.Sh NAME 5.Nm sqlite3_vtab_config 6.Nd Virtual Table Interface Configuration 7.Sh SYNOPSIS 8.Ft int 9.Fo sqlite3_vtab_config 10.Fa "sqlite3*" 11.Fa "int op" 12.Fa "..." 13.Fc 14.Sh DESCRIPTION 15This function may be called by either the xConnect or xCreate 16method of a virtual table implementation to configure 17various facets of the virtual table interface. 18.Pp 19If this interface is invoked outside the context of an xConnect or 20xCreate virtual table method then the behavior is undefined. 21.Pp 22At present, there is only one option that may be configured using this 23function. 24(See SQLITE_VTAB_CONSTRAINT_SUPPORT.) 25Further options may be added in the future. 26.Sh SEE ALSO 27.Xr SQLITE_VTAB_CONSTRAINT_SUPPORT 3 28