engine/src/FeedEngine.cpp
branchsymbian1
changeset 356 697e27864f3a
parent 349 4538abb763e4
child 358 d2ce95126703
--- 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");
 	}