Good evening,

On 9/02/09 at 11:06 PM -0800, Gerg Coates <[email protected]> wrote:

>my $t = $schema->resultset('Table')->search(
> {
>   'glr_date' => { '>=', $beg_date },
>   'glr_date' => { '<', $end_date }
> }
>);

Syntax from memory, so check the documentation to be sure:

my $t = $schema->resultset('Table')->search(
  { 
    'glr_date' => { 
      '>=', $beg_date, 
      '<',  $end_date 
    }
  }
);

Or maybe you need to do this:

my $t = $schema->resultset('Table')->search(
  { 
    'glr_date' => [  
     -and =>
       { '>=' => $beg_date }, 
       { '<'  => $end_date }
    ] 
  }
);

Charlie

-- 
   Charlie Garrison  <[email protected]>
   PO Box 141, Windsor, NSW 2756, Australia

O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
http://www.ietf.org/rfc/rfc1855.txt

_______________________________________________
List: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/DBIx-Class/
Searchable Archive: http://www.grokbase.com/group/[email protected]

Reply via email to