Re: anydbm, gdbm, dbm

2009-10-28 Thread Lawrence D'Oliveiro
In message , Lacrima wrote: > I don't understand how I can make a table in DBM database, or a row in > a table. Or all data must be stored just as key-value pairs? Maybe you should look at sqlite instead. -- http://mail.python.org/mailman/listinfo/python-list

Re: anydbm, gdbm, dbm

2009-10-28 Thread Lacrima
On Oct 27, 4:36 pm, Tim Chase wrote: > Lacrima wrote: > > I want to store some data, using anydbm module. > > According to docs the object returned by anydbm.open() supports most > > of the same functionality as dictionaries; keys and their > > corresponding values can be stored, retrieved, and de

Re: anydbm, gdbm, dbm

2009-10-27 Thread Tim Chase
Lacrima wrote: I want to store some data, using anydbm module. According to docs the object returned by anydbm.open() supports most of the same functionality as dictionaries; keys and their corresponding values can be stored, retrieved, and deleted... I don't understand how I can make a table in

anydbm, gdbm, dbm

2009-10-27 Thread Lacrima
Hello! I want to store some data, using anydbm module. According to docs the object returned by anydbm.open() supports most of the same functionality as dictionaries; keys and their corresponding values can be stored, retrieved, and deleted... I don't understand how I can make a table in DBM data