in reply to Re^3: Perl DBI issue
in thread Perl DBI issue

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

Replies are listed 'Best First'.
Re^5: Perl DBI issue
by izut (Chaplain) on Mar 14, 2007 at 17:05 UTC

    The first answer was ok, but the second was not what I asked you. I want to now the DSN of your database connection:

    use DBI; my $dsn = qq{dbi:SQLite:dbname=my.db}; my $dbh = DBI->connect($dsn, '', '');

    If you are using something different, you is probably not using DBI the right way.

    Igor 'izut' Sutton
    your code, your rules.