error C2511: 'HRESULT CDataAccessor::GetRecordSet(IUnknown ** )' : overloaded member function not found in 'CDataAccessor'
I didn't want to dump all the code
here is where the error is stopping
Can anyone help me
this is the sample C++ ATL ADO in VS.NET
DougP, MCP, A+
I didn't want to dump all the code
here is where the error is stopping
Code:
STDMETHODIMP CDataAccessor::GetRecordSet(IUnknown** NativeRecordSet)
{
if (NativeRecordSet == NULL)
return E_INVALIDARG;
// Note that ADO provides the ADORecordsetConstructionPtr:
ADORecordsetConstructionPtr spConsPtr;
spConsPtr = m_spADORecordset;
spConsPtr->get_Rowset(NativeRecordSet);
return S_OK;
}
Can anyone help me
this is the sample C++ ATL ADO in VS.NET
DougP, MCP, A+