Merge branch 'master' of github.com:john-g-g/sqlite2json
Signed-off-by: Jeffrey Paul <jp@eeqj.com>
This commit is contained in:
commit
4031bbf751
|
@ -50,7 +50,6 @@ def get_table(cursor, table_name):
|
||||||
cursor.execute('SELECT * FROM main.%s' % table_name)
|
cursor.execute('SELECT * FROM main.%s' % table_name)
|
||||||
return [dict(zip(column_names, row)) for row in cursor.fetchall()]
|
return [dict(zip(column_names, row)) for row in cursor.fetchall()]
|
||||||
|
|
||||||
|
|
||||||
def get_tables(cursor):
|
def get_tables(cursor):
|
||||||
table_list = get_table_list(cursor)
|
table_list = get_table_list(cursor)
|
||||||
output = {}
|
output = {}
|
||||||
|
|
Loading…
Reference in New Issue