This isn't really a Perl question. If, and what kind of database you need, depends on the problem you want to solve,
and it's a largely language independent problem. If for instance I need to program a flight reserve system, I get
lots of records that need to be stored, retrieved quickly,
summaries need to be made, and it needs to be backupped
and be able to restored quickly. Then you need a relational
database (and a good one, not MySQL). If I just have some
key/value pairs that I want to remember from one invocation
of the program to another, one of the DBM files will do.
If I have some mostly static data, and I'm going to need most of the data each time the program is run, a flat file
will do fine.
So the answer is "it depends on your data". What structure
does it have, is it volatile, how do you want to search it,
how important is it, what's your backup solution, etc, etc.
Answer all these question, and then you can start looking
what database you need.
Abigail
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.