thub.users.profile.tabs.comments.personalized


Hi XuDong Peng-MSFT
Thanks for Reply.
you have describe well format the code as well the xml file.

but my requirement is customer will not add all the site data into xml. So without adding site list we have to support the Edge with IE mode.
So I have used --ie-mode-force argument so it will load page in IE mode and it will displayed on the title.
160587-image.png


So when that information bar display it will impact the position of the page control . So i am finding anyway i can hide through proggramming.

image.png (11.8 KiB)

I have Set MaxRecords like
m_pRecordSetData ->PutMaxRecords(100);
Although it is fetching whole my Recordset. I have checked that also.

you can please suggest me if i am doing any wrong configuration.

Thanks for Reply
This both property will not work.
Our problem is when we run Recordset open command then can we prevent to all the recordset into the client memory?

m_pRecordSetData->Open((_variant_t((IDispatch )pCmdPtr)), vtConn,
ADODB::adOpenStatic, ADODB::adLockReadOnly, -1);
This line is loading all the record on virtual memory of the client. So can we make then it will load only few record and we use it and then we request for next few like that?

Yes i want to do the same way , but that case they have fixed query with cardnumber .
While in my case we have query only select * from table only and it will fetch all recordset data into heap memory.

We want to execute select *from table query only and want to fetch all 3 lakhs records, but how can we fetch records in batch wise so we can not consume whole heap memory?