请问怎样使客户机与服务器时间同步?急!!!!!!请给原码。

解决方案 »

  1.   

    The SetLocalTime function sets the current local time and date. BOOL SetLocalTime(    CONST SYSTEMTIME *lpSystemTime  // address of local time to set 
       );
     ParameterslpSystemTimePoints to a SYSTEMTIME structure that contains the current local date and time. 
    The wDayOfWeek member of the SYSTEMTIME structure is ignored.  Return ValuesIf the function succeeds, the return value is nonzero.
    If the function fails, the return value is zero. To get extended error information, call GetLastError. ResWindows NT: The SetLocalTime function fails if the calling process does not have the SE_SYSTEMTIME_NAME privilege. This privilege is disabled by default. Use the AdjustTokenPrivileges function to enable this privilege and again to disable it after the time has been set. For more information about security privileges, see Privileges. 
      

  2.   

    得到服务器时间可用多种方法;比如SERVER上放一个IDTIMESERVER;或用SQL语句什么的;
      

  3.   

    怎样得到SQL SERVER数据库服务器的时间?
      

  4.   

    设置ado 连接后加入
    procedure TForm1.Button1Click(Sender: TObject);
    begin
      adoquery1.SQL.Clear;
      adoquery1.SQL.Add('select getdate() as servertime');
      adoquery1.Open;
      showmessage(adoquery1.FieldValues['servertime']);
    end;