|
|
@ -71,7 +71,6 @@ class Base:
|
|
|
|
@TODO: Execution of stored procedures
|
|
|
|
@TODO: Execution of stored procedures
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
if sql.strip().lower().startswith('select') or sql.strip().lower().startswith('with') or sql.strip().startswith('show'):
|
|
|
|
if sql.strip().lower().startswith('select') or sql.strip().lower().startswith('with') or sql.strip().startswith('show'):
|
|
|
|
print (self._engine)
|
|
|
|
|
|
|
|
return pd.read_sql(sql,self._engine)
|
|
|
|
return pd.read_sql(sql,self._engine)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
_handler = self._engine.connect()
|
|
|
|
_handler = self._engine.connect()
|
|
|
|