editi has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: doubt in Perl+mysql
by GrandFather (Saint) on Jun 28, 2007 at 09:39 UTC

    The Database Programming section in the Tutorials section has a number of articles concerning manipulating databases using Perl. Using DBI wraps up many of the issues involved in accessing a large number of different database systems.

    If you Super Search SOPW for MySQL you will get many hits containing sample code of various sorts.


    DWIM is Perl's answer to Gödel
Re: doubt in Perl+mysql
by lima1 (Curate) on Jun 28, 2007 at 09:40 UTC
    DBD::mysql SYNOPSIS(!):
    $drh = DBI->install_driver("mysql"); $rc = $drh->func('createdb', $database, $host, $user, $password, 'admi +n');
Re: doubt in Perl+mysql
by mje (Curate) on Jun 28, 2007 at 09:51 UTC
    Install DBI and DBD::mysql modules, connect to database with DBI->connect and use the do method with the sql to create a database.