CTime::GetAsDBTIMESTAMP
备注
当OLEDB.h包括的时,此方法才可用。
调用该成员函数将对Win32兼容 DBTimeStamp 结构的 CTime 对象存储的时间信息。
bool GetAsDBTIMESTAMP(
DBTIMESTAMP& dbts
) const throw( );
参数
- dbts
对包含当前本地时间的 DBTimeStamp 结构的引用。
返回值
非零,如果成功;否则为0。
备注
所引用的 dbts 结构存储发生的时间。 此函数初始化的 DBTIMESTAMP 数据结构让其 fraction 成员设置为零。
示例
CTime t = CTime::GetCurrentTime();
DBTIMESTAMP ts;
t.GetAsDBTIMESTAMP(ts); // Retrieves the time in t into the ts structure
要求
Header: atltime.h