Przeglądaj źródła

Trying to find which method isn't closing its sql connection properly

ogert 5 lat temu
rodzic
commit
4a5a0679e7
1 zmienionych plików z 6 dodań i 4 usunięć
  1. 6 4
      cdplib/db_handlers/SQLHandler.py

+ 6 - 4
cdplib/db_handlers/SQLHandler.py

@@ -502,16 +502,18 @@ class SQLHandler:
         :rtype: DataFrame
         '''
         try:
-            #connection = self._engine.connect()
+            self._log.info('THIS SHOULD BE A SQL CALL')
+            '''
+            connection = self._engine.connect()
 
             data = pd.read_sql(sql=query,
-                               con=self._engine,
+                               con=connection,
                                **read_sql_kwargs)
 
-            #connection.close()
+            connection.close()
            
             return data
-
+            '''
         except Exception as e:
             err = ("Could not read the query to a dataframe. "
                    "Finished with error {}").format(e)