bug fix: has sql

This commit is contained in:
Steve Nyemba 2022-03-02 13:15:35 -06:00
parent d0651ef6e6
commit a7df7bfbce
2 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = {
"name":"data-transport",
"version":"1.4.4",
"version":"1.4.5",
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
"license":"MIT",
"packages":["transport"]}

View File

@ -80,7 +80,9 @@ class SQLRW :
try:
table = _args['table']
sql = "SELECT * FROM :table LIMIT 1".replace(":table",table)
found = pd.read_sql(sql,self.conn).shape[0]
found = pd.read_sql(sql,self.conn).shape[0]
found = True
except Exception as e:
pass
return found