I am trying to figure out how to access data from a datastore in a C++ PBNI extension. I'm passing a ResultSet object to the PBNI extension.
This is the entire code example for the GetItemData method:
d_rsAccessor->GetItemData(1, 1, &sd);
It doesn't show how to declare sd.
I have the GetColumnMetaData method working so I have the column number, name, datatype, and width.
Any help would be appreciated.