string str1;
string str2;
string str3;
for(int i=1;i<16;i++)
str1+=txt[i];
for(i=16;i<32;i++)
str2+=txt[i];
for(i=32;i<52;i++)
str3+=txt[i];
//插入
                  m_pRecordset->AddNew();
m_pRecordset->PutCollect("ip", _variant_t(str1));
m_pRecordset->PutCollect("area",_variant_t(str3));
m_pRecordset->Update();str1,str3都是string类型的,为什么插入到文本字段就出错呢