sqlite3_vfs* sqlite3_vfs_find( const char* name );
name
The name of the VFS module. If NULL, the default VFS module will be returned.
A reference to a VFS module. If the named module does not exist, a NULL will be returned.
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.