http://www.perlmonks.org?node_id=790779


in reply to Cannot connect to a SQLite db using DBIx::Class

Have you tried using PrintError set to a true value (in connect()), in the hope that the problem would be printed on the terminal (in which you run the program)?

Replies are listed 'Best First'.
Re^2: Cannot connect to a SQLite db using DBIx::Class
by bobf (Monsignor) on Aug 24, 2009 at 22:57 UTC

    I didn't have that set initially (the docs state that it is on by default), but I just reran it after explicitly setting it to true. Still no output.

    Thanks for the suggestion. Any other ideas? I'm at a loss.

      I haven't used DBIx*. In DBI, there is $errstr ($foo = DBI->connect() or die $DBI::errstr) variable to get the error text; and, trace() (DBI->trace( $level = 2 ); additionally may pass a file path to store output) to see how things are progressing.

      I fear you would report that even after setting a trace level, nothing is printed. In that case, something might be closing|fiddling with, at least, standard error.