You forgot to attach the logs, but you're most likely talking about the long standing SQLite error that occurs if you start the application then close it before it manages to finish loading the TV Guide data.
This error has been present in the app for about a year, ever since the SQLite database was introduced. Unfortunately I'm unable to catch this native error occuring in the SQLite DLL from with the .net code of GB-PVR.
The obvious work around is to not close the application immediately.
Quote:2007-09-11 21:04:09.281 ERROR [2] FATAL UNHANDLED EXCEPTION:: System.Data.SQLite.SQLiteException: SQLite error
library routine called out of sequence
at System.Data.SQLite.SQLite3.Close()
at System.Data.SQLite.SQLiteConnection.Close()
at System.Data.SQLite.SQLiteConnection.Dispose(Boolean disposing)
at System.ComponentModel.Component.Finalize()
Yep, that was it.
Just dont start the app then immediately exit, then you wont see this error.