I'll second Hannu's recommendation of Zope - I'm using it right now to
develop some data management pages for a PosrgreSQL database. The only
caveat is that the Zope->PostgreSQL connector (it's called ZPyGreSQLDA -
that's Zope Python postGreSQL Database Adaptor) is a contributed piece
of code with one show stopper bug - it errors on an empty query return!
I've posted a fix for that on the Zope mailing list, and sent it to the
author. If you decide to try it, fire me a note I can give you the patch
- oh, heck it's a one line additon patch: I'll attach it here.
Hannu Krosing wrote:
<clipped mention of Zope>
--
Ross J. Reedstrom, Ph.D., <reedstrm@rice.edu>
NSBRI Research Scientist/Programmer
Computer and Information Technology Institute
Rice University, 6100 S. Main St., Houston, TX 77005--- ZPyGreSQLDA/db.py~ Wed Jan 6 20:29:37 1999
+++ ZPyGreSQLDA/db.py Tue Jan 26 11:16:12 1999
@@ -182,6 +182,7 @@
raise sys.exc_type, sys.exc_value, sys.exc_traceback
if desc is None: return (), ()
+ if not result: return (), ()
items=[]
func=items.append