'Declaration Public Overloads Sub RegisterProgressHandler( _ ByVal handler As SQLiteProgressCallback _ )
public void RegisterProgressHandler( SQLiteProgressCallback handler )
Parameters
- handler
- A handler to register.
'Declaration Public Overloads Sub RegisterProgressHandler( _ ByVal handler As SQLiteProgressCallback _ )
public void RegisterProgressHandler( SQLiteProgressCallback handler )
If the registered progress handler returns non-zero, the operation is interrupted.
The handler must not do anything that will modify the connection it is registered in. This includes SQL statement preparation and execution, retrieving data, etc.
You cannot register more then one progress handler. When you register a new one, a previous one is unregitered.