Index: trunk/ippToPsps/jython/ipptopspsdb.py
===================================================================
--- trunk/ippToPsps/jython/ipptopspsdb.py	(revision 37246)
+++ trunk/ippToPsps/jython/ipptopspsdb.py	(revision 37551)
@@ -756,4 +756,81 @@
 
         self.execute(sql)
+
+    '''
+    Inserts some forced detection metadata for this batch ID
+    '''
+    def insertForcedWarpMeta(self, batchID, expID, filter):
+
+        sql = "INSERT INTO forcedwarp ( \
+               batch_id \
+               ,exp_id \
+               ,filter \
+               ) VALUES ( \
+               " + str(batchID) + " \
+               ," + str(expID) + " \
+               ,'" + filter + "' \
+               )"
+
+        self.execute(sql)
+
+
+
+    '''
+    Inserts some forcedobject metadata for this batch ID
+    '''
+    def insertForcedObjectMeta(self, batchID, region):
+
+        sql = "INSERT INTO forcedobject ( \
+               batch_id \
+               ,region \
+               ) VALUES ( \
+               " + str(batchID) + " \
+               ,'" + region + "' \
+               )"
+
+        self.execute(sql)
+
+
+
+
+    ''' 
+    Inserts some diff metadata for this batch ID
+    '''
+    def insertDiffMeta(self, batchID, filter, diffType):
+
+        sql = "INSERT INTO stack ( \
+               batch_id \
+               ,filter \
+               ,diff_type \
+               ) VALUES ( \
+               " + str(batchID) + " \
+               ,'" + filter + "' \
+               ,'" + diffType + "')"
+
+        self.execute(sql)
+
+
+
+
+    '''
+    Inserts some diffobject metadata for this batch ID
+    '''
+    def insertDiffObjectMeta(self, batchID, region):
+
+        sql = "INSERT INTO diffobject ( \
+               batch_id \
+               ,region \
+               ) VALUES ( \
+               " + str(batchID) + " \
+               ,'" + region + "' \
+               )"
+
+        self.execute(sql)
+
+
+
+
+
+
     '''
     Resets a batch ready for re-loading to the datastore
