Thread DBIx::Class: ResultSet über eine relativierte Tabelle sorieren
(6 answers)
Opened by pktm at 2009-01-14 17:59
Ok, dann habe ich Dich falsch verstanden. Probier mal:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #!/usr/bin/perl use strict; use warnings; use Local::DBIC_Schema; my $schema = Local::DBIC_Schema->connect( 'DBI:SQLite:pktm' ); $schema->storage->debug(1); my $thread = $schema->resultset( 'T' )->search( { 'testid' => 1 }, { join => 'Ps', '+select' => 'Ps.timestamp', '+as' => 'timestamp', order_by => 'Ps.timestamp DESC', } )->first; print $thread->get_column( 'timestamp' ); OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |