[Tutor] sqlite3 format data from tables

2009-05-23 Thread David
I have a budget program I am using to learn from. http://linuxcrazy.pastebin.com/f3b301daf I can not figure out how to get the transaction details to return so that it looks nice. It returns like this now. Your transaction History is: [(1, u'Food', -100), (2, u'Deposit', -200), (3,

Re: [Tutor] sqlite3 format data from tables

2009-05-23 Thread David
David wrote: I have a budget program I am using to learn from. http://linuxcrazy.pastebin.com/f3b301daf I can not figure out how to get the transaction details to return so that it looks nice. It returns like this now. Your transaction History is: [(1, u'Food', -100), (2, u'Deposit', -200),

Re: [Tutor] sqlite3 format data from tables

2009-05-23 Thread Martin Walsh
David wrote: David wrote: I have a budget program I am using to learn from. http://linuxcrazy.pastebin.com/f3b301daf I can not figure out how to get the transaction details to return so that it looks nice. It returns like this now. Your transaction History is: [(1, u'Food', -100), (2,

Re: [Tutor] sqlite3 format data from tables

2009-05-23 Thread Alan Gauld
David da...@abbottdavid.com wrote I can not figure out how to get the transaction details to return so that it looks nice. It returns like this now. Your transaction History is: [(1, u'Food', -100), (2, u'Deposit', -200), (3, u'Deposit', 500), (4, u'Python Book', -50)] You are just

Re: [Tutor] sqlite3 format data from tables

2009-05-23 Thread David
Martin Walsh wrote: David wrote: David wrote: I have a budget program I am using to learn from. http://linuxcrazy.pastebin.com/f3b301daf I can not figure out how to get the transaction details to return so that it looks nice. It returns like this now. Your transaction History is: [(1,