I want to produce this type of sql request :
update cc_configuration set version=version+1 where name='foo' order by version desc;
In RDBO :
Foo::DB::Configuration::Manager->update_configurations(
set =>
{
version => { sql => 'version + 1' },
},
where =>
[
name => $self->name,
],
sort_by => 'version DESC'
);
This produce bad SQL code (not in RDBO docs, i try ;) ) :
UPDATE cc_configurationCan I produce a sql update with order by with Rose::DB::Object FrameWork ?
Cheers,