Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 1.74 KB

working-with-documents-and-views.md

File metadata and controls

28 lines (24 loc) · 1.74 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
Working with Documents and Views | Microsoft Docs
11/04/2016
cpp-windows
article
C++
MFC [C++], documents
MFC [C++], views
views [C++], MFC
documents [C++], MFC
349b142d-1c5a-4b99-9de4-241e41d3d2f1
7
mikeblome
mblome
ghogen

Working with Documents and Views

The Microsoft Foundation Classes (MFC) library relies on a document/view architecture for many of its features. Typically, a document stores your data and a view displays it within the client area of a frame window and manages user interaction with the data. The view communicates with the document to obtain and update the data. You can use the database classes with the framework or without it.

For more information about using database classes in the framework, see MFC: Using Database Classes with Documents and Views.

By default, the MFC Application Wizard creates a skeleton application with no database support. However, you can select options to include minimal database support or more complete form-based support. For more information about application wizard options, see Database Support, MFC Application Wizard.

You can also use the database classes without using the full document/view architecture. For more information, see MFC: Using Database Classes Without Documents and Views.

See Also

ODBC and MFC