Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/standard/data/sqlite/connection-strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 [VFS](https://www.sqlite.org/vfs.html) implementation to use. When empty or not specified, the default VFS on given platform is used.

> [!NOTE]
> The Vfs keyword was added in version 10.0.

## Connection string builder

You can use <xref:Microsoft.Data.Sqlite.SqliteConnectionStringBuilder> as a strongly typed way of creating connection strings. It can also be used to prevent connection string injection attacks.
Expand Down
Loading