On Sun, 7 Jan 2007, Octavian Rasnita wrote:

From: "Len Jaffe" <[EMAIL PROTECTED]>
>  Hi,
> > I am trying to use the following condition but without success. Is it
>  possible to do it with DBIx::Class?
> > select count(*) where
>  substring(title, 1, 4)='XXXX';

 select count(*) where title like 'XXXX%'

Oh thanks. I didn't remember about LIKE. It works fine for what I need, but as a future reference, is it possible to use functions like substring with DBIx::Class?

For the moment I have used the "where => ...". Is it the only way?


Nope:

->search({ -and => [\"substring(title, 1, 4) = 'XXXX'"]}) ...

Jess


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

Reply via email to