engine/src/FeedEngine.cpp
branchnewlist
changeset 349 4538abb763e4
parent 340 37610dda6102
child 358 d2ce95126703
--- 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");
 	}