Przeglądaj źródła

Try handling unclosed sql connections by calling dispose on the engine before it is put back into the pool.

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

+ 3 - 3
cdplib/db_handlers/SQLHandler.py

@@ -502,13 +502,13 @@ class SQLHandler:
         :rtype: DataFrame
         '''
         try:
-            connection = self._engine.connect()
+            #connection = self._engine.connect()
 
             data = pd.read_sql(sql=query,
-                               con=connection,
+                               con=self._engines,
                                **read_sql_kwargs)
 
-            connection.close()
+            #connection.close()
            
             return data