1: 得到系统时间日期(使用GetLocalTime)
 CString sTime,sYear,sMonth,sDay;
 SYSTEMTIME CurTime;
 GetLocalTime(&CurTime);
 sYear.Format("%d年",CurTime.wYear);
 sMonth.Format("%d月",CurTime.wMonth);
 sDay.Format("%d日",CurTime.wDay);
 sTime =  sYear+ sMonth + sDay;
  // CurTime.wHour
  // CurTime.wMinute
  // CurTime.wSecond IBM的
 AfxMessageBox(sTime);

  本身取出后为整型的变量,再转化为CString类型存入数据库,最后在使用时,使时间进行加减时再进行转化为整型