()
| 17 | cur = conn.cursor() |
| 18 | |
| 19 | def readInbox(): |
| 20 | print 'Printing everything in inbox table:' |
| 21 | item = '''select * from inbox''' |
| 22 | parameters = '' |
| 23 | cur.execute(item, parameters) |
| 24 | output = cur.fetchall() |
| 25 | for row in output: |
| 26 | print row |
| 27 | |
| 28 | def readSent(): |
| 29 | print 'Printing everything in Sent table:' |
no test coverage detected