Re: How to save and retreive form

2001-10-17 Thread Lynn Glessner
Despite the advice to store the form data in a database instead of a flat file, I finally set up the script the way I had in mind, with a directory structure created as needed on my web server and the information in a flat file. It works great. Of course, now that my husband can actually see this

Perl/Postgres hosting providers (WAS Re: How to save and retreive form)

2001-09-26 Thread Mel Matsuoka
At 12:02 PM 09/26/2001, Mel Matsuoka wrote: >Agreed. > >Now if we could only get web hosting providers to agree as well. Replying to my own post...I was wondering if anyone here can make a recommendation on a GOOD hosting provider that supports Perl5 and PostgreSQL (and PHP4 as well, ideally).

RE: How to save and retreive form

2001-09-26 Thread Balaj, Geraldine
YUP! You guys are KILLIN' me ...! Kudos for the enthusiasm, though -Original Message- From: Stephan Tinnemeyer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 26, 2001 6:11 PM To: [EMAIL PROTECTED] Subject: Re: How to save and retreive form Does anybody not agree that

Re: How to save and retreive form

2001-09-26 Thread Stephan Tinnemeyer
Does anybody not agree that this discussion is far far away from it's original issue by now? Stephan -- Dipl.-Chem. Stephan Tinnemeyer Lindenallee 20 24105 Kiel Germany -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to save and retreive form

2001-09-26 Thread Mel Matsuoka
At 02:38 PM 09/26/2001 -0700, Randal L. Schwartz wrote: >> "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: > >Brett> MySQL is very simple to set up and easy to use. > >/me whispers "in 2001 and beyond, MySQL is spelled p o s t g r e s q l" > >MySQL is dead. Long Live PostgreSQL. Agree

Re: How to save and retreive form

2001-09-26 Thread fliptop
Camilo Gonzalez wrote: > > Doesn't PostgreSQL have a reputation as being somewhat pokey? Is it open > source? pokey? as in slow? there are many web sites that have information on comparing the two (in fact, searching google with the keywords 'mysql postgresql benchmark comparison' produced ove

Re: How to save and retreive form

2001-09-26 Thread Brett W. McCoy
On 26 Sep 2001, Randal L. Schwartz wrote: > I've found Pg to be more lightweight than MySQL. > > Again, not at all what I would have said a year ago. But with the > removal of the 8K limit per record, life with Pg is great! I was in heaven when they added foreign keys. Actually, I've been usin

RE: How to save and retreive form

2001-09-26 Thread Brett W. McCoy
On Wed, 26 Sep 2001, Camilo Gonzalez wrote: > Doesn't PostgreSQL have a reputation as being somewhat pokey? Is it open > source? It's not pokey anymore, and yes, it is open source, and while MySQL may be faster for basic queries, for more complex things, MySQL just can't cut it, plus it's missin

Re: How to save and retreive form

2001-09-26 Thread Randal L. Schwartz
> "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: Brett> On 26 Sep 2001, Randal L. Schwartz wrote: Brett> MySQL is very simple to set up and easy to use. >> >> /me whispers "in 2001 and beyond, MySQL is spelled p o s t g r e s q l" >> >> MySQL is dead. Long Live PostgreSQL. Brett> I

Re: How to save and retreive form

2001-09-26 Thread Brett W. McCoy
On 26 Sep 2001, Randal L. Schwartz wrote: > Brett> MySQL is very simple to set up and easy to use. > > /me whispers "in 2001 and beyond, MySQL is spelled p o s t g r e s q l" > > MySQL is dead. Long Live PostgreSQL. I agree 100%. Actually, 1000%. I suggested MySQL beacuse she wanted somethi

Re: How to save and retreive form

2001-09-26 Thread Randal L. Schwartz
> "Camilo" == Camilo Gonzalez <[EMAIL PROTECTED]> writes: Camilo> Doesn't PostgreSQL have a reputation as being somewhat pokey? Only for older versions. Modern versions benchmark as fast or faster than MySQL for equivalent tasks. And modern versions of course can do a lot more than MySQL i

RE: How to save and retreive form

2001-09-26 Thread Camilo Gonzalez
Doesn't PostgreSQL have a reputation as being somewhat pokey? Is it open source? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 26, 2001 4:39 PM To: [EMAIL PROTECTED] Subject: Re: How to save and retreive form >>>>>

Re: How to save and retreive form

2001-09-26 Thread Randal L. Schwartz
> "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: Brett> MySQL is very simple to set up and easy to use. /me whispers "in 2001 and beyond, MySQL is spelled p o s t g r e s q l" MySQL is dead. Long Live PostgreSQL. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 5

Re: How to save and retreive form

2001-09-26 Thread Stephan Tinnemeyer
Lynn, there is more to 'save' than waste of memory - saved is only what can be retreived. I had to tell this my former bosses every two weeks and I never felt that I made them understand.;=) Therefore, you may keep a table with the locations of your data files in a special file. BTW, this is wha

Re: How to save and retreive form

2001-09-26 Thread Lynn Glessner
Well, I don't need any database functionality per se, just save and retrieve, but if it makes my life *easier* instead of harder then I'm all for it. :) The save to text file was so easy that initially looked to be the simplest approach. Thanks for the suggestion, I'll check it out. > > From wha

Re: How to save and retreive form

2001-09-26 Thread Brett W. McCoy
On Wed, 26 Sep 2001, Lynn Glessner wrote: > For a small business intranet, I want the user to fill out the form, save it > onto the web server, and be able to retreive it later. A text file will be > fine, there won't be any need for reporting etc and a database would be > overkill. I would like