PDA

View Full Version : Good Perl module/script to search a MySQL DB?


electrify77
02-07-2009, 09:02 PM
Hello,

I'm need of an intelligent Perl search engine for a MySQL database I have. Can you recommend anything?

oesxyl
02-07-2009, 09:07 PM
Hello,

I'm need of an intelligent Perl search engine for a MySQL database I have. Can you recommend anything?
DBI

http://dbi.perl.org/

best regards

FishMonger
02-07-2009, 09:24 PM
You'll also need the driver module.

DBD::mysql
http://search.cpan.org/~capttofu/DBD-mysql-4.010/lib/DBD/mysql.pm

KevinADC
02-07-2009, 11:13 PM
DBI is an interface to a database but it is not a script to search a database. You will still need to write the code that actually searches your database.