From e7df1e967fcca68da35da2aa5ea61cce513b0962 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Sat, 1 Feb 2025 01:58:01 -0600 Subject: [PATCH] bug fix sqlalchemy dispose connection --- info/__init__.py | 2 +- transport/sql/common.py | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/info/__init__.py b/info/__init__.py index 092b385..32a59e6 100644 --- a/info/__init__.py +++ b/info/__init__.py @@ -1,6 +1,6 @@ __app_name__ = 'data-transport' __author__ = 'The Phi Technology' -__version__= '2.4.14' +__version__= '2.4.16' __email__ = "info@the-phi.com" __license__=f""" Copyright 2010 - 2024, Steve L. Nyemba diff --git a/transport/sql/common.py b/transport/sql/common.py index e3feb5c..38ebfed 100644 --- a/transport/sql/common.py +++ b/transport/sql/common.py @@ -100,7 +100,11 @@ class SQLBase(Base): # _uri = [_item.strip() for _item in _uri if _item.strip()] # return '/'.join(_uri) return f'{_provider}://{_host}/{_database}' if _account == '' else f'{_provider}://{_account}{_host}/{_database}' - + def close(self,) : + try: + self._engine.dispose() + except : + pass class BaseReader(SQLBase): def __init__(self,**_args): super().__init__(**_args) @@ -142,4 +146,4 @@ class BaseWriter (SQLBase): # if 'if_exists' in _args : # _mode['if_exists'] = _args['if_exists'] - _df.to_sql(_table,self._engine,**_mode) \ No newline at end of file + _df.to_sql(_table,self._engine,**_mode)