Re: text file vs. cPickle vs sqlite a design question

2007-04-11 Thread Bruno Desthuilliers
Dag a écrit : > I have an application which works with lists of tuples of the form > (id_nr,'text','more text',1 or 0). I'll have maybe 20-50 or so of these > lists containing anywhere from 3 to over 3 tuples. The actions I > need to do is either append a new tuple to the end of the list, di

Re: text file vs. cPickle vs sqlite a design question

2007-04-11 Thread Paddy
On Apr 11, 5:40 pm, Dag <[EMAIL PROTECTED]> wrote: > I have an application which works with lists of tuples of the form > (id_nr,'text','more text',1 or 0). I'll have maybe 20-50 or so of these > lists containing anywhere from 3 to over 3 tuples. The actions I > need to do is either append a

Re: text file vs. cPickle vs sqlite a design question

2007-04-11 Thread Bruno Desthuilliers
John Machin a écrit : (snip) > ... and a few more cents: > > There are *two* relations/tables involved (at least): a "tuple" table > and a "list" table. Mmm... From a purely technical POV, not necessarily. If there's no need for anything else than distinguishing between different lists, a singl

Re: text file vs. cPickle vs sqlite a design question

2007-04-11 Thread John Machin
On Apr 12, 7:09 am, Bruno Desthuilliers <[EMAIL PROTECTED]> wrote: > Dag a écrit : > > > > > I have an application which works with lists of tuples of the form > > (id_nr,'text','more text',1 or 0). I'll have maybe 20-50 or so of these > > lists containing anywhere from 3 to over 3 tuples. Th

Re: text file vs. cPickle vs sqlite a design question

2007-04-11 Thread Bruno Desthuilliers
Dag a écrit : > I have an application which works with lists of tuples of the form > (id_nr,'text','more text',1 or 0). I'll have maybe 20-50 or so of these > lists containing anywhere from 3 to over 3 tuples. The actions I > need to do is either append a new tuple to the end of the list, di

Re: text file vs. cPickle vs sqlite a design question

2007-04-11 Thread Gabriel Genellina
En Wed, 11 Apr 2007 13:40:02 -0300, Dag <[EMAIL PROTECTED]> escribió: > I have an application which works with lists of tuples of the form > (id_nr,'text','more text',1 or 0). I'll have maybe 20-50 or so of these > lists containing anywhere from 3 to over 3 tuples. The actions I > need to do

text file vs. cPickle vs sqlite a design question

2007-04-11 Thread Dag
I have an application which works with lists of tuples of the form (id_nr,'text','more text',1 or 0). I'll have maybe 20-50 or so of these lists containing anywhere from 3 to over 3 tuples. The actions I need to do is either append a new tuple to the end of the list, display all the tuples