// Synchronize the time and date of the SQL _server Server
Procedure TDM. synchronizationsqlserverdatetime ();
VaR
Theserverdatetime: tdatetime; // defines the server time
Thelocaldatetime: _ systemtime; // defines the local system time reference windows
Year, month, day: word; // defines the year, month, and day.
Hour, Min, SEC, msec: word; // defines the time, minute, and second.
Begin
With commonquery do begin
SQL. Clear;
SQL. Add ('select getdate () as server Time ');
Open;
Theserverdatetime: = fieldbyname ('server Time'). asdatetime;
End;
Decodedate (theserverdatetime, year, month, day); // decomposition server year month day
Decodetime (theserverdatetime, hour, Min, SEC, msec); // server Time Decomposition
// ------- Set the local system time
Thelocaldatetime. wyear: = year;
Thelocaldatetime. wmonth: = month;
Thelocaldatetime. wday: = Day;
Thelocaldatetime. whour: = hour;
Thelocaldatetime. wminute: = min;
Thelocaldatetime. wmilliseconds: = msec;
Setlocaltime (thelocaldatetime); // modify the local system time
End;
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.