资源简介
VC ADO技术操作 ACCESS的一些实例,主要是一些数据库的基本操作,比如添加、删除、修改数据,查看数据库内容等,重点是ADO在VC 中的用法。通过实例演示如何在VC 中使用ADO进行ACCESS数据库编程,并对涉及到的几个概念进行详细解释。这些实例并不对ADO和ACCESS的基本概念进行详细解释,主要包括以下内容:
ADO和ADOX到底是什么,二者的作用和区别建立数据库
ADOX创建ACCESS数据库
ADO创建ACCESS数据库的表
使用_ConnectionPtr接口开发ACCESS数据库
使用_RecordsetPtr接口开发ACCESS数据库
ADO和ADOX到底是什么,二者的作用和区别建立数据库
ADOX创建ACCESS数据库
ADO创建ACCESS数据库的表
使用_ConnectionPtr接口开发ACCESS数据库
使用_RecordsetPtr接口开发ACCESS数据库
代码片段和文件信息
// ADOXCreateDatabase.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ADOXCreateDatabase.h“
#include “ADOXCreateDatabaseDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CADOXCreateDatabaseApp
BEGIN_MESSAGE_MAP(CADOXCreateDatabaseApp CWinApp)
//{{AFX_MSG_MAP(CADOXCreateDatabaseApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CADOXCreateDatabaseApp construction
CADOXCreateDatabaseApp::CADOXCreateDatabaseApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CADOXCreateDatabaseApp object
CADOXCreateDatabaseApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CADOXCreateDatabaseApp initialization
BOOL CADOXCreateDatabaseApp::InitInstance()
{
if(!AfxOleInit())
{
AfxMessageBox(“OLE初始化出错!“);
return FALSE;
}
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CADOXCreateDatabaseDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2315 2008-07-02 05:51 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 4375 2008-07-01 21:09 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 561 2008-07-01 21:09 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 1490 2015-02-27 11:04 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 5684 2008-07-01 21:37 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 5561 2015-02-27 11:04 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 1503 2015-02-27 11:04 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 37924 2001-12-21 02:58 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 30892 2001-12-21 02:58 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 3795 2008-07-01 21:09 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 1078 2008-07-01 21:09 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 410 2008-07-01 21:09 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 742 2008-07-01 21:37 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 220 2008-07-01 21:09 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 1225 2008-07-06 21:01 codesc.net\VC++使用ADO开发ACCESS数据库\ADOXCreateDataba
文件 2255 2015-02-27 11:04 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\ConnPtr_Open_Exe.cpp
文件 4339 2008-07-15 10:53 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\ConnPtr_Open_Exe.dsp
文件 557 2008-07-15 10:53 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\ConnPtr_Open_Exe.dsw
文件 1434 2008-07-15 10:53 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\ConnPtr_Open_Exe.h
文件 6442 2008-07-28 21:28 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\ConnPtr_Open_Exe.rc
文件 8211 2015-02-27 11:04 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\ConnPtr_Open_ExeDlg.cpp
文件 1511 2008-07-28 21:01 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\ConnPtr_Open_ExeDlg.h
文件 196608 2008-07-31 21:13 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\Northwind.mdb
文件 3759 2008-07-15 10:53 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\ReadMe.txt
文件 1078 2008-07-15 10:53 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\res\ConnPtr_Open_Exe.ico
文件 408 2008-07-15 10:53 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\res\ConnPtr_Open_Exe.rc2
文件 832 2008-07-28 18:13 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\resource.h
文件 254 2015-02-27 11:04 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\StdAfx.cpp
文件 1160 2008-07-19 21:33 codesc.net\VC++使用ADO开发ACCESS数据库\ConnPtr_Open_Exe\StdAfx.h
文件 2363 2015-02-27 11:04 codesc.net\VC++使用ADO开发ACCESS数据库\CREATE_DB_AND_TABLE\CREATE_DB_AND_TABLE.cpp
............此处省略46个文件信息
相关资源
- vc读取大智慧实时行情,并将行情数据
- msvcr120.dll 32位和64位
- mysql5.7驱动.rar
- Spring MVC+MySQL框架直接使用
- springmvc+spring+mybatis+mysql数据库整合读
- 框架写的简单学生管理系统
- vcredist 2013 x64
- oracle数据库 +springmvc框架 开发的增删
- 毕业设计体检预约系统-springmvc+mybat
- Springmvc+jdbc简单学生管理系统
- 数据库课程设计 学生成绩管理系统
- Ajax+SpringMVC+Spring+Mybatis+MySql+js用户注册
- 基于springmvc、spring、mybatis、shiro、e
- SpingMVC+MyBatis简单权限管理系统
- VC实现的智能化停车场管理系统
- OCP认证VCE模拟试题1Z0-053,711道
- mvc图书管理系统作品sql数据库
- Extjs+Mysql+SpringMVC+MyBatis通用后台管理系
- ADOAccess.rar
- 基于Access数据库的图书管理系统
- SpringMVC+Mybatis+SQLServer整合源码 含数据
- SSM框架--Spring+SpringMVC+Mybatis整合
- 图书管理系统MVC三层架构
- ·学生信息管理系统Hibernate+Struts2
- spring+springmvc+mybatis OA考勤管理系统带
- springMVC入门(员工系统-Mysql)代码简
- 基于SSM框架的完整项目 Spring+SpringMV
- ssm框架--spring mvc实现文件上传
- 家庭财务管理系统SpringMVC3+Spring3+Myb
- springmvc+jdbctemplate+mysql(采用注解方式
评论
共有 条评论