X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FTroubleshooting.pod;h=f76934ec2c2f72b28861c58d9ae07bc9494db55d;hb=fb13a49f17a0e0a49638080a4bd826fb3702aebe;hp=6087ae343478449a8f4e30a91831cebbe7b0ec14;hpb=6fe735fad298585c8d6982d496bcbb7b75400a6b;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Manual/Troubleshooting.pod b/lib/DBIx/Class/Manual/Troubleshooting.pod index 6087ae3..f76934e 100644 --- a/lib/DBIx/Class/Manual/Troubleshooting.pod +++ b/lib/DBIx/Class/Manual/Troubleshooting.pod @@ -17,13 +17,13 @@ SQL tracing, so to see what is happening try Alternatively use the C<< storage->debug >> class method:- - $class->storage->debug(1); + $schema->storage->debug(1); To send the output somewhere else set debugfh:- - $class->storage->debugfh(IO::File->new('/tmp/trace.out', 'w'); + $schema->storage->debugfh(IO::File->new('/tmp/trace.out', 'w'); -Alternatively you can do this with the environment variable too:- +Alternatively you can do this with the environment variable, too:- export DBIC_TRACE="1=/tmp/trace.out" @@ -47,5 +47,116 @@ 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. For example, for a schema C< MySchema > +you need to specify a fully qualified namespace: C< package MySchema::MyTable; >. + +=head2 syntax error at or near "" ... + +This can happen if you have a relation whose name is a word reserved by your +database, e.g. "user": + + package My::Schema::User; + ... + __PACKAGE__->table('users'); + __PACKAGE__->add_columns(qw/ id name /); + __PACKAGE__->set_primary_key('id'); + ... + 1; + + package My::Schema::ACL; + ... + __PACKAGE__->table('acl'); + __PACKAGE__->add_columns(qw/ user_id /); + __PACKAGE__->belongs_to( 'user' => 'My::Schema::User', 'user_id' ); + ... + 1; + + $schema->resultset('ACL')->search( + {}, + { + join => [qw/ user /], + '+select' => [ 'user.name' ] + } + ); + +The SQL generated would resemble something like: + + SELECT me.user_id, user.name FROM acl me + JOIN users user ON me.user_id = user.id + +If, as is likely, your database treats "user" as a reserved word, you'd end +up with the following errors: + +1) syntax error at or near "." - due to "user.name" in the SELECT clause + +2) syntax error at or near "user" - due to "user" in the JOIN clause + +The solution is to enable quoting - see +L for +details. + +=head2 column "foo DESC" does not exist ... + +This can happen if you are still using the obsolete order hack, and also +happen to turn on SQL-quoting. + + $rs->search( {}, { order_by => [ 'name DESC' ] } ); + +Since L >= 0.08100 and L >= 1.50 the above +should be written as: + + $rs->search( {}, { order_by => { -desc => 'name' } } ); + +For more ways to express order clauses refer to +L + +=head2 Perl Performance Issues on Red Hat Systems + +There is a problem with slow performance of certain DBIx::Class +operations using the system perl on some Fedora and Red Hat Enterprise +Linux system (as well as their derivative distributions such as Centos, +White Box and Scientific Linux). + +Distributions affected include Fedora 5 through to Fedora 8 and RHEL5 +upto and including RHEL5 Update 2. Fedora 9 (which uses perl 5.10) has +never been affected - this is purely a perl 5.8.8 issue. + +As of September 2008 the following packages are known to be fixed and so +free of this performance issue (this means all Fedora and RHEL5 systems +with full current updates will not be subject to this problem):- + + Fedora 8 - perl-5.8.8-41.fc8 + RHEL5 - perl-5.8.8-15.el5_2.1 + +This issue is due to perl doing an exhaustive search of blessed objects +under certain circumstances. The problem shows up as performance +degradation exponential to the number of L result objects in +memory, so can be unnoticeable with certain data sets, but with huge +performance impacts on other datasets. + +A pair of tests for susceptibility to the issue and performance effects +of the bless/overload problem can be found in the L test +suite, in the C file. + +Further information on this issue can be found in +L, +L and +L + +=head2 Excessive Memory Allocation with TEXT/BLOB/etc. Columns and Large LongReadLen + +It has been observed, using L, that creating a L +object which includes a column of data type TEXT/BLOB/etc. will allocate +LongReadLen bytes. This allocation does not leak, but if LongReadLen +is large in size, and many such result objects are created, e.g. as the +output of a ResultSet query, the memory footprint of the Perl interpreter +can grow very large. + +The solution is to use the smallest practical value for LongReadLen. + =cut