|
|
|
@ -83,6 +83,7 @@ class Base:
|
|
|
|
|
class SQLBase(Base):
|
|
|
|
|
def __init__(self,**_args):
|
|
|
|
|
super().__init__(**_args)
|
|
|
|
|
self._schema = _args.get('schema',None)
|
|
|
|
|
def get_provider(self):
|
|
|
|
|
raise Exception ("Provider Needs to be set ...")
|
|
|
|
|
def get_default_port(self) :
|
|
|
|
@ -122,6 +123,8 @@ class BaseReader(SQLBase):
|
|
|
|
|
sql = _args['sql']
|
|
|
|
|
else:
|
|
|
|
|
_table = _args['table'] if 'table' in _args else self._table
|
|
|
|
|
if self._schema and type(self._schema) == str :
|
|
|
|
|
_table = f'{self._schema}.{_table}'
|
|
|
|
|
sql = f'SELECT * FROM {_table}'
|
|
|
|
|
return self.apply(sql)
|
|
|
|
|
|
|
|
|
@ -151,5 +154,9 @@ class BaseWriter (SQLBase):
|
|
|
|
|
# _mode['schema'] = _args['schema']
|
|
|
|
|
# if 'if_exists' in _args :
|
|
|
|
|
# _mode['if_exists'] = _args['if_exists']
|
|
|
|
|
|
|
|
|
|
_df.to_sql(_table,self._engine,**_mode)
|
|
|
|
|
if 'schema' in _args and type(_args['schema']) == str:
|
|
|
|
|
self._schema = _args.get('schema',None)
|
|
|
|
|
if self._schema :
|
|
|
|
|
_mode['schema'] = self._schema
|
|
|
|
|
_df.to_sql(_table,self._engine,**_mode)
|
|
|
|
|
_df.to_sql(_table,self._engine,**_mode)
|
|
|
|
|