A .NET wrapper to the SQLite database

SQLiteClient.BusyRetryDelay Property

Gets or sets the retry delay in milliseconds.

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

Remarks

Defaults to 10 milliseconds.

Example

            db = new SQLite("testdb");
            db.BusyRetryDelay = 15;
            

See Also

SQLiteClient Class | SQLite.NET Namespace