On Saturday 01 March 2008 13:07:38 Sam's Lists wrote:
> I'd like to do a select using a timedelta.  I.e. I'd like one of the
> parameters to be that it was updated in the last week.

Here's the way I'd do it:
cutoff = datetime.datetime.now() - datetime.timedelta(days=7)
rrunning = list(RRun.select(AND(RRun.q.progressID == 1,
                                                  RRun.q.pingTime >cutoff)))

cs

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
sqlobject-discuss mailing list
sqlobject-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sqlobject-discuss

Reply via email to