~~~~~~~vc中如何使用AppendChunk?~~~~~~~
_variant_t deliveryID = DeliveryID;
_variant_t map = Map;
_variant_t result;
_bstr_t bstrSQL;
_RecordsetPtr rst;
bstrSQL=_T("select * from delivery_code")
_T(" Where Delivery_ID =") + _bstr_t(deliveryID);
SAFE_CALL(CDBHelper::Instance()->ExecuteSQLNew(bstrSQL,rst));
// Set the value of the field.
rst->Fields->Item["Delivery_map"]->AppendChunk(map);
rst->Update();
rst->Close();
我这样写的对吗,我运行了程序没有报错,但是也没有更新,大虾们帮我看看