A .NET wrapper to the SQLite database

SQLiteClient.BusyRetries Property

Gets or sets the number of retries that occur if the database is busy

[Visual Basic]
Public Property BusyRetries As Integer
[C#]
public int BusyRetries {get; set;}

Remarks

Defaults to 5 retries (not including the initial attempt).

Example

            db = new SQLite("testdb");
            db.BusyRetries = 10;
            

See Also

SQLiteClient Class | SQLite.NET Namespace