[Zope-dev] [ANNOUNCE] emacs html helper mode with dtml support

2002-09-03 Thread de ZORZI Frederic
http://www.zope.org/Members/fredz/html-helper-mode Here you can find a modified version of html-helper-mode.el (3.0.4jolly) for emacs who supports dtml tags : - Auto-indentation (with a little help :)) - Shortcuts / Completion - Tag regions I'd be pleased to receive feedback Fredz.

[Zope-dev] Flush memory from product

2002-03-20 Thread de ZORZI Frederic
Hello zopers, I'm writing a product with a relational database mapping. When I launch loading procedures, the product creates ~ 5 instances. I regulary do a get_transaction().commit(), but memory still increase constantly (more than 300 megs for python processes) How can I flush memory ?

Re: [Zope-dev] Flush memory from product

2002-03-20 Thread de ZORZI Frederic
de ZORZI Frederic wrote: Hello zopers, I'm writing a product with a relational database mapping. When I launch loading procedures, the product creates ~ 5 instances. I regulary do a get_transaction().commit(), but memory still increase constantly (more than 300 megs for python processes

Re: [Zope-dev] Using psycopg cursor in a product

2002-02-08 Thread de ZORZI Frederic
Hi all, Is it possible to use cursors and their functions (dictfetchall, fetchone...) with zpsycopg connection ? Easy stupid :) : conn = getattr(self, self.connection_id) db = conn().db curs = db.cursor() curs.execute(select * from support limit 2) return %s %