changeset 584:5bda87ac0a69

renames removeFromSqlite to deleteFromSqlite
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 04 Dec 2014 16:57:29 -0500
parents 6ebfb43e938e
children aab2242ea88c
files python/storage.py scripts/delete-tables.py
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/python/storage.py	Mon Sep 22 16:21:53 2014 -0400
+++ b/python/storage.py	Thu Dec 04 16:57:29 2014 -0500
@@ -358,8 +358,8 @@
     connection.close()
     return objects
 
-def removeFromSqlite(filename, dataType):
-    'Removes some tables in the filename depending on type of data'
+def deleteFromSqlite(filename, dataType):
+    'Deletes (drops) some tables in the filename depending on type of data'
     import os
     if os.path.isfile(filename):
         connection = sqlite3.connect(filename)
--- a/scripts/delete-tables.py	Mon Sep 22 16:21:53 2014 -0400
+++ b/scripts/delete-tables.py	Thu Dec 04 16:57:29 2014 -0500
@@ -5,10 +5,10 @@
 import utils
 import storage
 
-parser = argparse.ArgumentParser(description='The program deletes 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 = 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.removeFromSqlite(args.databaseFilename, args.dataType)
+storage.deleteFromSqlite(args.databaseFilename, args.dataType)