Page 1 of 1

Update at 12.AM MIDNIGHT

Posted: Tue Mar 10, 2020 3:16 am
by unixkd
Hi all

I need a function to update database at 12 o'clock midnight

Thanks

Joe

Re: Update at 12.AM MIDNIGHT

Posted: Tue Mar 10, 2020 7:13 am
by rdonnay
What should we name it?

UpdateDatabaseAt12OclockMidnight() ?

Re: Update at 12.AM MIDNIGHT

Posted: Tue Mar 10, 2020 9:46 am
by Tom
Here's the code:

Code: Select all

FUNCTION UpdateDatabaseAt12OclockMidnight()
  MakeUpdateDatabaseAt12OclockMidnight()
RETURN .T.

Re: Update at 12.AM MIDNIGHT

Posted: Tue Mar 10, 2020 10:43 am
by Auge_Ohr
unixkd wrote:I need a function to update database at 12 o'clock midnight

Code: Select all

PROCEDURE BackUp() 
LOCAL oThread := Thread():new() 

   oThread:setStartTime(60*60*24-1) 
   oThread:start( DoBackUp() )