|
@@ -46,6 +46,7 @@ class SQLHandler:
|
|
closing of a database connection,
|
|
closing of a database connection,
|
|
this avoids errors when parallelizing with multiprocessing.
|
|
this avoids errors when parallelizing with multiprocessing.
|
|
'''
|
|
'''
|
|
|
|
+ pass
|
|
def __init__(self, db_uri: str = None,
|
|
def __init__(self, db_uri: str = None,
|
|
is_case_insensitive: bool = False):
|
|
is_case_insensitive: bool = False):
|
|
'''
|
|
'''
|
|
@@ -106,7 +107,6 @@ class SQLHandler:
|
|
|
|
|
|
def __del__(self):
|
|
def __del__(self):
|
|
self.dispose_engine()
|
|
self.dispose_engine()
|
|
- self._log.info('SQL Handler has been destroyed')
|
|
|
|
|
|
|
|
@property
|
|
@property
|
|
def _connection_params(self) -> dict:
|
|
def _connection_params(self) -> dict:
|