Guest User

Untitled

a guest
Aug 16th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. cursor.execute("SELECT * FROM tbl_rpt_log")
  2. reports_to_run = cursor.fetchall()
  3.  
  4. for row in reports_to_run :
  5. user=(row[0])
  6. report=(row[1])
  7. run_interval=(row[3])
  8.  
  9. call_report(report, user)
Add Comment
Please, Sign In to add comment