Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table "backup_history" which store sites backup details in my database with the following fields:

id
site_id
backup_file_name
file_size
by (cron/manual)
datetime

For the next backup, I need to find out recent last backup date n time of the site and compare with the settings(daily backup) and run next backup by cron.

But am unable to find out last inserted row with the
site_id = $id AND by = 'cron' AND datetime = 'this will be recent date-time'

$lastbackup = BackupHistory::model()->findByAttributes(array('site_id' => $single_site->id, 'by' => 'cron'));

This code provides a row but not with recent date n time.
May be am going wrong so plz suggest some solution. Thanks !!!

share|improve this question
1  
is order by make sense. – Frank May 4 '12 at 12:51
1  
yes order by makes sense, didn't see your comment.. – bool.dev May 4 '12 at 12:59

1 Answer

up vote 3 down vote accepted

You'll need to order by your result. So try this:

$lastbackup = BackupHistory::model()->findByAttributes(array('site_id' => $single_site->id, 'by' => 'cron'),array('order'=>'datetime'));
share|improve this answer
1  
done, thanks @bool.dev – Frank May 4 '12 at 13:20
1  
glad to help... – bool.dev May 4 '12 at 13:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.