Robert Calco wrote: > > When calling the Close() method on this abstraction, the Connection > variable (an instance of SQLiteConnection) is throwing > ObjectDisposedException. >
That exception means the connection has already been disposed. Ideally, disposing the connection only once will solve the issue; alternatively, you can wrap the call to Close() in a try/catch and ignore the resulting ObjectDisposedException. -- Joe Mistachkin _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users