Name
sqlite3_vfs_find() — Get a VFS module by name
Definition
sqlite3_vfs* sqlite3_vfs_find( const char* name );
-
name The name of the VFS module. If NULL, the default VFS module will be returned.
- Returns
A reference to a VFS module. If the named module does not exist, a NULL will be returned.
Description
This function is used to search for a specific VFS module by name. This allows a stub or pass-through VFS module to find an underlying VFS implementation.
To use a custom VFS module with a database connection, simply
pass the VFS name to sqlite3_open_v2(). Calling this function is not
required.
See Also
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access