--- a/engine/src/FeedEngine.cpp Sun Nov 14 13:06:35 2010 +0000
+++ b/engine/src/FeedEngine.cpp Mon Nov 15 13:59:40 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");
}