Re: Sqlite, leo's future file format?

2008-09-18 Thread Ville M. Vainio
On Sat, Sep 6, 2008 at 5:03 PM, Edward K. Ream [EMAIL PROTECTED] wrote: Are you aware of Leo's support for zodb data stores? Afaik, nobody has done anything at all with it. Perhaps there is a big untapped potential in this area. Zodb is a big dependency, while sqlite is bundled with python

Re: Sqlite, leo's future file format?

2008-09-18 Thread Terry Brown
I've just written a through-the-web web authoring system which uses a node hierarchy and stores the nodes as pickled objects in a sqlite3 db. Some nodes have 5 MB .mp3 files as attributes, but this doesn't seem to be a problem. So I'm impressed with the performance of sqlite, but I don't think

Re: Sqlite, leo's future file format?

2008-09-18 Thread Edward K. Ream
On Thu, Sep 18, 2008 at 1:38 PM, Terry Brown [EMAIL PROTECTED] wrote: I've just written a through-the-web web authoring system which uses a node hierarchy and stores the nodes as pickled objects in a sqlite3 db. Some nodes have 5 MB .mp3 files as attributes, but this doesn't seem to be a

Re: Sqlite, leo's future file format?

2008-09-06 Thread Edward K. Ream
On Sat, Sep 6, 2008 at 5:28 AM, Ville M. Vainio [EMAIL PROTECTED] wrote: Sqlite databases are self-contained in one file, and it seems also the author suggests sqlite as a possible application file format. Are you aware of Leo's support for zodb data stores? Afaik, nobody has done anything