Commit | Line | Data |
---|---|---|
3b44ccc6 | 1 | =head1 NAME |
2 | ||
3 | DBIx::Class::Manual::Troubleshooting - Got a problem? Shoot it. | |
ee38fa40 | 4 | |
130c6439 | 5 | =head2 "Can't locate storage blabla" |
ee38fa40 | 6 | |
159a8515 | 7 | =head2 Tracing SQL |
8 | ||
9 | The C<DBIX_CLASS_STORAGE_DBI_DEBUG> environment variable controls | |
10 | SQL tracing, so to see what is happening try | |
11 | ||
12 | export DBIX_CLASS_STORAGE_DBI_DEBUG=1 | |
13 | ||
14 | Alternatively use the C<storage->debug> class method:- | |
15 | ||
16 | $class->storage->debug(1); | |
17 | ||
18 | ||
ee38fa40 | 19 | =cut |
20 |