in reply to Replacing SQL with perl
ESPECIALLY for the complex queries are you more interested in using built-in DB optimizations like functions, cacheing, locking, and the such- why would you NOT want to use it? Storing info in your cgi can even be dangerous since it would never know when the data would become outdated. In short- USE AN SQL SERVER if you WANT speed, fast devel time, and neatness- you just can't lose!
What kind of situations do you imagine that would benefit from dropping the db? I would imagine only insanley simple things like an included file to print to the user but that not may even benefit. AND, with the DB, you get a great way to organize and even PROTECT information from prying eyes. A well-organized table beats recursive searches through the filesystem anyday! The only time you want to do any processing on the data after you have it is when you may have data that you need to compare it to or its something that the db can't handle or doesn't support or you're worried about DBengine load (speed) if a complex operation is taking too much time.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Replacing SQL with perl
by marvell (Pilgrim) on Dec 06, 2000 at 22:15 UTC | |
by AgentM (Curate) on Dec 06, 2000 at 22:36 UTC | |
by extremely (Priest) on Dec 07, 2000 at 14:36 UTC | |
Re: Re: Replacing SQL with perl
by cadfael (Friar) on Dec 07, 2000 at 20:17 UTC |