sqlite tuples

2007-07-17 Thread John K Masters
I am fairly new to Python and am trying to get to grips with pysqlite2. From what I have read data is returned as a list of tuples when using SELECT via connection.cursor. But I have not, despite frantic googling, found how to INSERT a list of tuples into a sqlite table. If I convert the tuple to

Re: sqlite tuples

2007-07-17 Thread Carsten Haese
On Tue, 2007-07-17 at 21:49 +0100, John K Masters wrote: I am fairly new to Python and am trying to get to grips with pysqlite2. From what I have read data is returned as a list of tuples when using SELECT via connection.cursor. But I have not, despite frantic googling, found how to INSERT a

Re: sqlite tuples

2007-07-17 Thread John K Masters
On 17:30 Tue 17 Jul , Carsten Haese wrote: On Tue, 2007-07-17 at 21:49 +0100, John K Masters wrote: I am fairly new to Python and am trying to get to grips with pysqlite2. From what I have read data is returned as a list of tuples when using SELECT via connection.cursor. But I have