in reply to How to search database by date range

It probably will be something like:

my $rs = [$c->model('DB::table')->search( { 'me.date' => { between => ['2013-05-03', '2013-05-04'] } } ,{} )];

Check the SQL::Abstract docs for the gritty details.