We releasing testing our dOOdads .NET architecture against your new 2.0 driver and noticed one thing:
private void AddParameter(SQLiteCommand cmd, string paramName, object data){#if(VS2005) cmd.Parameters.AddWithValue(paramName, data); // Not in the SQLite 2.0 Driver#else cmd.Parameters.Add(paramName, data);#endif}
That's ...