Re: is there a module to work with pickled objects storage in database?

2007-05-04 Thread Bruno Desthuilliers
krishnakant Mane a écrit : > hello all, > I am trying a very complex kind of a task in a project. > I have a knowledge management system where I need to store a lot of > objects (pickled). I have to store mostly lists and dictionaries into > a rdbms. Which totally defeats the purpose of a rdbms.

Re: is there a module to work with pickled objects storage in database?

2007-05-04 Thread Paul Boddie
On 4 Mai, 12:18, "krishnakant Mane" <[EMAIL PROTECTED]> wrote: > > I first dump the object into the file through pickle.dump and then > open the file in read mode. > then I read the contents of the file and then store what ever comes > out into the blob field. > I know this is not right and there s

is there a module to work with pickled objects storage in database?

2007-05-04 Thread krishnakant Mane
hello all, I am trying a very complex kind of a task in a project. I have a knowledge management system where I need to store a lot of objects (pickled). I have to store mostly lists and dictionaries into a rdbms. mostly I will be using mysql. I want to know if there is any module that can help m