从sql数据库读取datetime型数据的问题
请问如何才能将从sql数据库读取的数据存入CTime 型变量中呢?CTime time2;
time2=m_Ado.m_pRecordset->GetCollect ("住宿日期");
CString str;
str=time2.Format ("%Y-%m-%d");
MessageBox(str);//1970-01-01
CString s;
s=(char*)(_bstr_t)m_Ado.m_pRecordset->GetCollect ("住宿日期");
MessageBox(s);//2009-8-4
上面的代码究竟哪里出错了?直接存在CTime型变量中日期怎么是1970-01-01呢?