From 618fe70cc4a5015e79d46ab6bc72669fb671c2c1 Mon Sep 17 00:00:00 2001 From: Charlie Duso Date: Tue, 28 Jun 2016 20:34:04 -0700 Subject: [PATCH] Date Change --- mergeScript.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mergeScript.py b/mergeScript.py index e59561c..e32ecbc 100644 --- a/mergeScript.py +++ b/mergeScript.py @@ -3,7 +3,7 @@ # # # @author Charles Duso # # @description Merges databases that have the same tables and schema. # -# @date June 6th, 2016 # +# @date June 28th, 2016 # ################################################################################ ############################# Import Libraries ################################# @@ -41,7 +41,7 @@ def closeConnection(): def getTableNames( dbName ): curs.execute("SELECT name FROM sqlite_master WHERE type='table';") tables = curs.fetchall() - + # Gets the column names of a table # # @param dbName the name of the database file (i.e. "example.db")