Hi All,
I have a variant array where I keep on filling the variables that needs to be set for the Query:
Now how do I extract what values are being set? When I try to get the value by reference &vArrayElm I get some Variant Object which I again I cannot find what value is being set. When I use Query->Debug=true, it gives me the query but the values are all unknown as it only says
"{Array}"
:XMY_COLA={ARRAY}
Any help is highly appreciated.
Thanks
I have a variant array where I keep on filling the variables that needs to be set for the Query:
Code:
for (int i = 0; i < DataSet->FieldCount; i++)
{
Query->SetVariable(vPList->Strings[i], vArrayElm[i]);
}
Query->ExecuteArray(0, ArrayCount);
ArrayCount = 0;
"{Array}"
:XMY_COLA={ARRAY}
Any help is highly appreciated.
Thanks