bugfix
This commit is contained in:
parent
6c88be2071
commit
33b99b3acc
@ -509,6 +509,7 @@ class SQLor(object):
|
|||||||
recs = []
|
recs = []
|
||||||
async for r in self._get_data(sqlstring,{}):
|
async for r in self._get_data(sqlstring,{}):
|
||||||
recs.append(recs)
|
recs.append(recs)
|
||||||
|
debug(f'primary("{tablename}")={recs}')
|
||||||
return recs
|
return recs
|
||||||
|
|
||||||
async def fkeys(self,tablename):
|
async def fkeys(self,tablename):
|
||||||
@ -516,6 +517,7 @@ class SQLor(object):
|
|||||||
recs = []
|
recs = []
|
||||||
async for r in self._get_data(sqlstring, {}):
|
async for r in self._get_data(sqlstring, {}):
|
||||||
recs.append(r)
|
recs.append(r)
|
||||||
|
|
||||||
return recs
|
return recs
|
||||||
|
|
||||||
async def createTable(self,tabledesc):
|
async def createTable(self,tabledesc):
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user