Click here to Skip to main content
15,895,746 members
Articles / Desktop Programming / Win32

Inter-Process Communication (IPC) Introduction and Sample Code

Rate me:
Please Sign up or sign in to vote.
4.91/5 (57 votes)
19 Dec 2009Ms-PL8 min read 251.6K   12.2K   195  
This article will cover general IPC technologies in All-In-One Code Framework. The IPC technologies include Named Pipes, File Mapping, MailSlot, etc.
========================================================================
    CONSOLE APPLICATION : CppUseADO Project Overview
========================================================================

/////////////////////////////////////////////////////////////////////////////
Use:

The CppUseADO sample demonstrates the Microsoft ActiveX Data Objects (ADO) 
technology to access databases using #import and Visual C++. It shows the 
basic structure of connecting to a data source, issuing SQL commands, using 
the Recordset object and performing the cleanup.


/////////////////////////////////////////////////////////////////////////////
Project Relation:

CppUseADO -> SQLServer2005DB
CppUseADO accesses the database created by SQLServer2005DB.


/////////////////////////////////////////////////////////////////////////////
Code Logic:

1. Connect to the data source. (ADODB::Connection15::Open)

2. Build and execute an ADO command. (ADODB::Command15::Execute)
The command can be a SQL statement (SELECT/UPDATE/INSERT/DELETE), or a stored
procedure call. 

3. Use the Recordset object. (ADODB::Recordset15::Open / MoveFirst / MoveNext 
/ Fields / Update / UpdateBatch)
Recordset represents the entire set of records from a base table or the 
results of an executed command. It facilitates the enumeration, insertion, 
update, deletion of records. At any time, the Recordset object refers to 
only a single record within the set as the current record.

4. Clean up objects before exit. (ADODB::Recordset15::Close, 
ADODB::Connection15::Close)


/////////////////////////////////////////////////////////////////////////////
References:

ADO Code Examples in Visual C++
http://msdn.microsoft.com/en-us/library/ms677563.aspx

Microsoft ActiveX Data Objects (ADO)
http://msdn.microsoft.com/en-us/library/ms877664.aspx

SAMPLE: Vcspnp.exe Demonstrates Passing SQL NULL Parameters and Reading NULL 
Values with ADO
http://support.microsoft.com/kb/229088

ADO Data Types
(The table below shows the ADO Data Type mapping between Access, SQL Server)
http://www.w3schools.com/ADO/ado_datatypes.asp

Loading image files from a database, using ADO
http://www.codeproject.com/KB/database/ADOImageDB.aspx


/////////////////////////////////////////////////////////////////////////////

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 Microsoft Public License (Ms-PL)


Written By
China China
Microsoft All-In-One Code Framework delineates the framework and skeleton of Microsoft development techniques through typical sample codes in three popular programming languages (Visual C#, VB.NET, Visual C++). Each sample is elaborately selected, composed, and documented to demonstrate one frequently-asked, tested or used coding scenario based on our support experience in MSDN newsgroups and forums. If you are a software developer, you can fill the skeleton with blood, muscle and soul. If you are a software tester or a support engineer like us, you may extend the sample codes a little to fit your specific test scenario or refer your customer to this project if the customer's question coincides with what we collected.
http://cfx.codeplex.com/

Comments and Discussions