diff scripts/delete-tables.py @ 614:5e09583275a4

Merged Nicolas/trafficintelligence into default
author Mohamed Gomaa <eng.m.gom3a@gmail.com>
date Fri, 05 Dec 2014 12:13:53 -0500
parents 5bda87ac0a69
children 180b6b0231c0
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/delete-tables.py	Fri Dec 05 12:13:53 2014 -0500
@@ -0,0 +1,14 @@
+#! /usr/bin/env python
+
+import sys, argparse
+
+import utils
+import storage
+
+parser = argparse.ArgumentParser(description='The program deletes (drops) the tables in the database before saving new results (for objects, tables object_features and objects are dropped; for interactions, the tables interactions and indicators are dropped')
+#parser.add_argument('configFilename', help = 'name of the configuration file')
+parser.add_argument('-d', dest = 'databaseFilename', help = 'name of the Sqlite database', required = True)
+parser.add_argument('-t', dest = 'dataType', help = 'type of the data to remove', required = True, choices = ['object','interaction', 'bb'])
+args = parser.parse_args()
+
+storage.deleteFromSqlite(args.databaseFilename, args.dataType)