X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FTroubleshooting.pod;h=eaa35fe4b6fb757f184150b01dfa9346c60340c8;hb=902133a323b09153549d1a54983ae3f98da2c4ec;hp=ebfb71b0b5a0b21b002c96657ef2bd20181e351e;hpb=ee38fa40d848a164040097286b4440d4b64565e8;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Manual/Troubleshooting.pod b/lib/DBIx/Class/Manual/Troubleshooting.pod index ebfb71b..eaa35fe 100644 --- a/lib/DBIx/Class/Manual/Troubleshooting.pod +++ b/lib/DBIx/Class/Manual/Troubleshooting.pod @@ -1,10 +1,59 @@ -=head1 Troubleshooting +=head1 NAME -=over 4 +DBIx::Class::Manual::Troubleshooting - Got a problem? Shoot it. -=item +=head2 "Can't locate storage blabla" -=back +You're trying to make a query on a non-connected schema. Make sure you got +the current resultset from $schema->resultset('Artist') on a schema object +you got back from connect(). + +=head2 Tracing SQL + +The C environment variable controls +SQL tracing, so to see what is happening try + + export DBIC_TRACE=1 + +Alternatively use the C<< storage->debug >> class method:- + + $class->storage->debug(1); + +To send the output somewhere else set debugfh:- + + $class->storage->debugfh(IO::File->new('/tmp/trace.out', 'w'); + +Alternatively you can do this with the environment variable too:- + + export DBIC_TRACE="1=/tmp/trace.out" + +=head2 Can't locate method result_source_instance + +For some reason the table class in question didn't load fully, so the +ResultSource object for it hasn't been created. Debug this class in +isolation, then try loading the full schema again. + +=head2 Can't get last insert ID under Postgres with serial primary keys + +Older L and L versions do not handle C +correctly, causing code that uses auto-incrementing primary key +columns to fail with a message such as: + + Can't get last insert id at /.../DBIx/Class/Row.pm line 95 + +In particular the RHEL 4 and FC3 Linux distributions both ship with +combinations of L and L modules that do not work +correctly. + +L version 1.50 and L 1.43 are known to work. + +=head2 ... Can't locate object method "source_name" via package ... + +There's likely a syntax error in the table class referred to elsewhere +in this error message. In particular make sure that the package +declaration is correct, so for a schema C< MySchema > you need to +specify a fully qualified namespace: C< package MySchema::MyTable; > +for example. =cut