Обсуждение: Rapid web based apps?
Looks like I am just full of questions today ;) If you have to create a web based app with PostgreSQL as the backend, what would you use? Right now I am creating a custom CGI program in C, but I think I am just being stubborn and not looking at what new tools are available. What's everyone else using? Thanks, Matthew
Matthew Hagerty wrote: > > Looks like I am just full of questions today ;) > > If you have to create a web based app with PostgreSQL as the backend, what > would you use? Right now I am creating a custom CGI program in C, but I > think I am just being stubborn and not looking at what new tools are available. > > What's everyone else using? You could check out Zope (http://www.zope.org/) I'm currently using only parts of it (DocumentTemplates, Bobo (now ZPublisher)) but I'm moving to it when I have a little more time. It does have a (little) learning curve, especially if you need to extend it, but basic things should be quite trivial. PHP (http://www.php.org/) seems also quite popular. ----------- Hannu
Thus spake Matthew Hagerty
> If you have to create a web based app with PostgreSQL as the backend, what
> would you use? Right now I am creating a custom CGI program in C, but I
> think I am just being stubborn and not looking at what new tools are available.
Perl, Tcl, PHP3, Python to name a few. I use Python and like it
very much. Everything except PHP3 is in the interfaces directory.
--
D'Arcy J.M. Cain <darcy@{druid|vex}.net> | Democracy is three wolves
http://www.druid.net/darcy/ | and a sheep voting on
+1 416 424 2871 (DoD#0082) (eNTP) | what's for dinner.
On Feb 8, 3:19pm, Matthew Hagerty wrote: > Subject: [INTERFACES] Rapid web based apps? > Looks like I am just full of questions today ;) > > If you have to create a web based app with PostgreSQL as the backend, what > would you use? Right now I am creating a custom CGI program in C, but I > think I am just being stubborn and not looking at what new tools are available. > > What's everyone else using? PHP, it's easy, it works, it's fast. I downloaded it and had a working app in a couple of hours.
Hi Matthew, I'm using C++ Gerald On 08-Feb-99 Matthew Hagerty wrote: > Looks like I am just full of questions today ;) > > If you have to create a web based app with PostgreSQL as the backend, > what > would you use? Right now I am creating a custom CGI program in C, but I > think I am just being stubborn and not looking at what new tools are > available. > > What's everyone else using? > > Thanks, > Matthew --- #include <std_disclaimer> Gerald Brandt gbr@hvdc.ca Manitoba HVDC Research Centre http://www.hvdc.ca
I am using PHP. Cip Gerald Brandt wrote: > Hi Matthew, > > I'm using C++ > > Gerald > > On 08-Feb-99 Matthew Hagerty wrote: > > Looks like I am just full of questions today ;) > > > > If you have to create a web based app with PostgreSQL as the backend, > > what > > would you use? Right now I am creating a custom CGI program in C, but I > > think I am just being stubborn and not looking at what new tools are > > available. > > > > What's everyone else using? > > > > Thanks, > > Matthew > > --- > #include <std_disclaimer> > > Gerald Brandt gbr@hvdc.ca > Manitoba HVDC Research Centre http://www.hvdc.ca
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
Hi, On Tue, 9 Feb 1999, Ross J. Reedstrom wrote: > 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 [...] Does it work well with BLOBs? No problems displaying pictures or movies? Andrzej