themissingCRAM commited on
Commit
02ffeb9
·
1 Parent(s): e1a03f2

select test

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -89,6 +89,8 @@ def init_db():
89
  },
90
  ]
91
  insert_rows_into_table(rows, receipts)
 
 
92
 
93
 
94
  if __name__ == "__main__":
 
89
  },
90
  ]
91
  insert_rows_into_table(rows, receipts)
92
+ with engine.begin() as conn:
93
+ print("SELECT test", conn.execute("SELECT * FROM receipts"))
94
 
95
 
96
  if __name__ == "__main__":