Skip to content

Commit

Permalink
Update database-errors.md
Browse files Browse the repository at this point in the history
Fixes #36453
  • Loading branch information
IEvangelist authored Jul 31, 2023
1 parent 49d553f commit 058139e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/standard/data/sqlite/database-errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ SQLite is aggressive when it comes to locking tables and database files. If your

Whenever Microsoft.Data.Sqlite encounters a busy or locked error, it will automatically retry until it succeeds or the command timeout is reached.

You can increase the timeout of command by setting <xref:Microsoft.Data.Sqlite.SqliteCommand.CommandTimeout%2A>. The default timeout is 30 seconds. A value of `0` means no timeout.
You can increase the timeout of a command by setting <xref:Microsoft.Data.Sqlite.SqliteCommand.CommandTimeout%2A>. The default timeout is 30 seconds. A value of `0` means no timeout.

```csharp
// Retry for 60 seconds while locked
Expand Down

0 comments on commit 058139e

Please sign in to comment.