Re: [GENERAL] Application written in pure pgsql, good idea?

2015-03-01 Thread Alberto Cabello Sánchez
On Sat, 28 Feb 2015 15:39:06 -0500 inspector morse wrote: > Is it a good idea to write a simple application (consisting of just data > entry interfaces) in pure pgsql? > > Basically, we would have each page has a stored function in postgresql that > is called by php+apache (the http get/post val

Re: [GENERAL] Application written in pure pgsql, good idea?

2015-03-01 Thread David G Johnston
inspector morse wrote > This is just for fun/research, I don't need a web framework because PHP is > actually picking up the incoming requests and sending it to a pgsql stored > function. The pgsql will concatenate all the html that is required for the > page and send it back to PHP to write out to

Re: [GENERAL] Application written in pure pgsql, good idea?

2015-03-01 Thread Jan de Visser
On March 1, 2015 09:45:24 AM inspector morse wrote: > This is just for fun/research, I don't need a web framework because PHP is > actually picking up the incoming requests and sending it to a pgsql stored > function. The pgsql will concatenate all the html that is required for the > page and send

Re: [GENERAL] Application written in pure pgsql, good idea?

2015-03-01 Thread inspector morse
This is just for fun/research, I don't need a web framework because PHP is actually picking up the incoming requests and sending it to a pgsql stored function. The pgsql will concatenate all the html that is required for the page and send it back to PHP to write out to the response. My main concer