I\'m using System.Data.SQLite provider in an ASP.NET application (framework 4.0).
The issue I\'m running into is that when I INSERT something in a table in the SQLite databa
Ensuring that any IDisposable (e.g., SQLiteConnection, SQLiteCommand, etc) is properly disposed of solves this problem. I should re-iterate that one must be using "using" as a habit to ensure proper disposing of disposable resources.