themissingCRAM
commited on
Commit
·
28fb60e
1
Parent(s):
3d2d75d
checking tables
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ def init_db():
|
|
91 |
]
|
92 |
insert_rows_into_table(rows, receipts)
|
93 |
with engine.begin() as conn:
|
94 |
-
print("SELECT test", conn.execute(text("SELECT * FROM
|
95 |
|
96 |
|
97 |
if __name__ == "__main__":
|
|
|
91 |
]
|
92 |
insert_rows_into_table(rows, receipts)
|
93 |
with engine.begin() as conn:
|
94 |
+
print("SELECT test", conn.execute(text("SELECT * FROM receipts")).fetchall())
|
95 |
|
96 |
|
97 |
if __name__ == "__main__":
|