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 how I have to do this in my code, a few drivers (we support 8 DBMS systems) haven't make this change.
Mike Griffin
MyGeneration Software
http://www.mygenerationsoftware.com