diff -r a0eb6aaed052 -r 697e27864f3a engine/src/FeedEngine.cpp --- a/engine/src/FeedEngine.cpp Sat Nov 13 12:34:20 2010 +0000 +++ b/engine/src/FeedEngine.cpp Mon Nov 15 23:47:20 2010 +0000 @@ -749,6 +749,17 @@ CleanupStack::PopAndDestroy(); // st } + rc = sqlite3_prepare_v2(&iDB,"alter table shows add column deletedate int" , -1, &st, (const char**) NULL); + DP1(" rc=%d", rc); + + if( rc==SQLITE_OK ) + { + Cleanup_sqlite3_finalize_PushL(st); + rc = sqlite3_step(st); + DP1(" rc=%d", rc); + CleanupStack::PopAndDestroy(); // st + } + DP("DBEnsureFileSizeFieldExists END"); }