Re: Calling a Postgres Function using CGI written in Python

2006-05-04 Thread Fuzzydave
cheers :) thats what i wanted to know :) David -- http://mail.python.org/mailman/listinfo/python-list

Re: Calling a Postgres Function using CGI written in Python

2006-05-03 Thread Fuzzydave
I did do a google search i have looking through the one python book i have and there are plenty of references for how to write a function in Python but not as many on how to call a function stored in postgres using python I have tried the conn.execute(cmi_grn_cost(productCode)) and also the conn.ca

Re: Calling a Postgres Function using CGI written in Python

2006-05-03 Thread Colin Gillespie
A quick google for "Python CGI" gives you lots of links. But if you intend to do much in the way of cgi, then I would recommend the spyce framework,http://spyce.sourceforge.net/ HTH Colin Fuzzydave wrote: > I need to call a function stored in Postgres which does a lot of the db > and calculat