A .NET wrapper to the SQLite database

SQLiteClient.Interrupt Method 

Interrupts the current database operation asap

[Visual Basic]
Public Sub Interrupt()
[C#]
public void Interrupt();

Remarks

The Interrupt() method can be called from a different thread or from a signal handler to cause the current database operation to exit at its first opportunity. When this happens, the Execute() method (or the equivalent) that started the database operation will throw an SQLiteException with the errorcode set to INTERRUPT

See Also

SQLiteClient Class | SQLite.NET Namespace