.Dd January 24, 2024 .Dt SQLITE3_VTAB_CONFIG 3 .Os .Sh NAME .Nm sqlite3_vtab_config .Nd virtual table interface configuration .Sh SYNOPSIS .In sqlite3.h .Ft int .Fo sqlite3_vtab_config .Fa "sqlite3*" .Fa "int op" .Fa "..." .Fc .Sh DESCRIPTION This function may be called by either the xConnect or xCreate method of a virtual table implementation to configure various facets of the virtual table interface. .Pp If this interface is invoked outside the context of an xConnect or xCreate virtual table method then the behavior is undefined. .Pp In the call sqlite3_vtab_config(D,C,...) the D parameter is the database connection in which the virtual table is being created and which is passed in as the first argument to the xConnect or xCreate method that is invoking sqlite3_vtab_config(). The C parameter is one of the virtual table configuration options. The presence and meaning of parameters after C depend on which virtual table configuration option is used. .Sh IMPLEMENTATION NOTES These declarations were extracted from the interface documentation at line 9720. .Bd -literal SQLITE_API int sqlite3_vtab_config(sqlite3*, int op, ...); .Ed .Sh SEE ALSO .Xr sqlite3 3 , .Xr SQLITE_VTAB_CONSTRAINT_SUPPORT 3