Re: What's the best "free" DB for a web-based app?
- From: darren@xxxxxxxxxxxxxxxx (Darren Duncan)
- Date: Tue, 29 Nov 2005 18:13:04 -0800
At 5:02 PM -0800 11/29/05, John Armstrong wrote:
Hi - I'm soon to be doing a Perl app on the Internet, that'll need database. We want the db to be as "free" as possible, but still fully multi-user (web-based). Would the best route be MySql on Linux? Random access files? Something else? We want no licensing obligations (no Oracle, Sequal Server, etc.). We want to go with Perl because it's the best programming language invented by humans.
If you want something that's trivially easy to use, try SQLite.
The database manager is embedded in the DBD::SQLite module itself, and you have no separate server processes to maintain, and you can specify a database's storage location like an ordinary file.
Its also faster than anything else for some types of usage, and unlike many typical MySQL setups, it is fully transactional, ACID compliant, and safe.
Certain kinds of usage with many writing processes may be slow, though, since only one active writer can access a SQLite database at once.
SQLite is also public domain, which is about as liberty as you can get.
-- Darren Duncan .
- References:
- What's the best "free" DB for a web-based app?
- From: John Armstrong
- What's the best "free" DB for a web-based app?
- Prev by Date: RE: [cgiapp] What's the best "free" DB for a web-based app?
- Next by Date: Re: What's the best "free" DB for a web-based app?
- Previous by thread: What's the best "free" DB for a web-based app?
- Next by thread: Re: What's the best "free" DB for a web-based app?
- Index(es):
Relevant Pages
|