Click here to Skip to main content
15,881,559 members
Articles / Desktop Programming / MFC

Exposing tabular data from your COM object - Part 1

Rate me:
Please Sign up or sign in to vote.
4.17/5 (3 votes)
28 Jul 2000CPOL 100K   1.8K   35  
ADO seems to be the ideal way to expose tabular data from your own COM objects and the ATL OLE DB Provider templates can help!
import "oaidl.idl";
import "ocidl.idl";
import "msado15.idl";		

[
	object,
	uuid(B82B3D47-0A12-11d3-8022-00805F9B645A),
	dual,
	nonextensible,
	oleautomation,
	helpstring("IGetAsADORecordset Interface"),
	pointer_default(unique)
]
interface IGetAsADORecordset : IDispatch
{
	[id(1), helpstring("method GetAsRecordset")] 
	HRESULT GetAsRecordset(
		[in, optional, defaultvalue(adUseClient)] CursorLocationEnum CursorLocation,
		[in, optional, defaultvalue(adLockReadOnly)] LockTypeEnum LockType,
		[in, optional, defaultvalue(adOpenStatic)] CursorTypeEnum CursorType,
		[out, retval] VARIANT *pvRecordset);
};




By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) JetByte Limited
United Kingdom United Kingdom
Len has been programming for over 30 years, having first started with a Sinclair ZX-80. Now he runs his own consulting company, JetByte Limited and has a technical blog here.

JetByte provides contract programming and consultancy services. We can provide experience in COM, Corba, C++, Windows NT and UNIX. Our speciality is the design and implementation of systems but we are happy to work with you throughout the entire project life-cycle. We are happy to quote for fixed price work, or, if required, can work for an hourly rate.

We are based in London, England, but, thanks to the Internet, we can work 'virtually' anywhere...

Please note that many of the articles here may have updated code available on Len's blog and that the IOCP socket server framework is also available in a licensed, much improved and fully supported version, see here for details.

Comments and Discussions