-
-
Notifications
You must be signed in to change notification settings - Fork 772
Closed
Description
Lines 517 to 519 in 56623e4
table_definition = list(await self.execute(name, 'select sql from sqlite_master where name = :n and type="table"', { | |
'n': table, | |
}))[0][0] |
result = list(await self.execute(name, sql, params)
if result:
return result[0][0]
and use it anywhere [0][0]
is now.