diff --git a/docs/standard/data/sqlite/connection-strings.md b/docs/standard/data/sqlite/connection-strings.md index d83b3c93295f9..98a05a358f962 100644 --- a/docs/standard/data/sqlite/connection-strings.md +++ b/docs/standard/data/sqlite/connection-strings.md @@ -106,6 +106,13 @@ A value indicating whether the connection will be pooled. | True | The connection will be pooled. This is the default. | | False | The connection won't be pooled. | +### Vfs + +A value indicating which [virtual file system (VFS)](https://www.sqlite.org/vfs.html) implementation to use. When empty or not specified, the default VFS for the platform is used. + +> [!NOTE] +> The Vfs keyword was added in version 10.0. + ## Connection string builder You can use as a strongly typed way of creating connection strings. It can also be used to prevent connection string injection attacks.