Link to home
Start Free TrialLog in
Avatar of mwhuen
mwhuen

asked on

database

I have a perl cgi guestbook in my site, now I want to use database to save the data .
but I never use database before,
how to use it? with perl-cgi? and what database software?

any simple source?
any simple reference?
Avatar of ozo
ozo
Flag of United States of America image

perldoc AnyDBM_File
ASKER CERTIFIED SOLUTION
Avatar of loumf
loumf

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mwhuen
mwhuen

ASKER

What is the difference of using
DBM and DBI?
DBI is for accessing databases such as oracle, access etc whereas dbm is a simple database managment facilitie for UNIX. if you are using unix and you only have a simple relational model then this might be for you. but if you want to take the advantages of sql etc them dbi is the awnswer. dbi is simply a framework module, you actually get dbd specific drivers for the database you want to talk to. i just answered a question about DBD and put a example of dbd in it, have a look its in the locked questions bit.
makerp changed the proposed answer to a comment