Я наткнулся на старый пост, описывающий, как реализовать массовое обновление строк в CRecordset.Во-первых, вам нужно реализовать массовую выборку строк в вашем наборе записей (вы также можете увидеть этот пост в качестве примера)
Как только ваш набор записей работает для извлечения данных, этодовольно просто.
//Declare your recordset
CMyRecordsetBulk regSetBulk(&myDatabase);
//Open it
regSetBulk.Open(NULL, NULL, CRecordset::useMultiRowFetch);
//Select the row you want to change
regSetBulk.SetRowsetCursorPosition(nRow);
//Update the value(s) you need to change.
regSetBulk.m_pnPrecision = 21;
//Set the length of the data in the field you modified (the "Precision" field is a byte)
regSetBulk.m_plnPrecision = 1;
//Do the same thing for a couple of other rows
regSetBulk.SetRowsetCursorPosition(++nRow);
regSetBulk.m_pnPrecision = 32;
regSetBulk.m_plnPrecision = 1;
regSetBulk.SetRowsetCursorPosition(++nRow);
regSetBulk.m_pnPrecision = 21;
regSetBulk.m_plnPrecision = 1;
regSetBulk.SetRowsetCursorPosition(++nRow);
regSetBulk.m_pnPrecision = 12;
regSetBulk.m_plnPrecision = 1;
//Update the rows and check for errors
int nRetCode;
AFX_ODBC_CALL(::SQLSetPos(regSetBulk.m_hstmt, NULL, SQL_UPDATE, SQL_LOCK_NO_CHANGE));
regSetBulk.CheckRowsetError(nRetCode);