Home > Database > Mysql Tutorial > 用MFC + ADO 把jpg图象文件放入ACCESS库中

用MFC + ADO 把jpg图象文件放入ACCESS库中

WBOY
Release: 2016-06-07 15:16:19
Original
1325 people have browsed it

本文示例源代码或素材下载 网上好象这个例子还没有样,如果你用VC做一个人事部管理系统,不可能没有人员照片吧!能找到的例子中都是用BMP,不敢用! 这个例子用到了VC6.0和access2002(officeXP),涉及到ADO的用法, 文件 对话框的使用,一个CPicture类和一个buff

本文示例源代码或素材下载

网上好象这个例子还没有样,如果你用VC做一个人事部管理系统,不可能没有人员照片吧!能找到的例子中都是用BMP,不敢用!

这个例子用到了VC6.0和access2002(officeXP),涉及到ADO的用法,文件对话框的使用,一个CPicture类和一个buffer缓冲区。

一、我的ADO用法整理

1. stdafx.h头文件中加入:

#import "c:\program files\common files\system\ado\msado15.dll" no_namespace rename("EOF","adoEOF")

2. 应用程序初始化中加入:

AfxOleInit();<br>HRESULT hr;<br>try<br>{<br>  hr = m_pConnection.CreateInstance("ADODB.Connection");///创建Connection对象<br>  if(SUCCEEDED(hr))<br>  {<br>  hr = m_pConnection->Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=wy.mdb","","",adModeUnknown);///连接数据库<br>  ///上面一句中连接字串中的Provider是针对ACCESS2000环境的,对于ACCESS97,需要改为:Provider=Microsoft.Jet.OLEDB.3.51;<br>  }<br>}<br>catch(_com_error e)///捕捉异常<br>{<br>  CString errormessage;<br>  errormessage.Format("打开 wy.mdb 数据库失败!\r\n错误信息:%s",e.ErrorMessage());<br>  AfxMessageBox(errormessage);///显示错误信息<br>}

3. 应用程序EXIT中加入:

if (m_pConnection->State)<br>    m_pConnection->Close();

4. 应用程序中加入:

_ConnectionPtr m_pConnection;

5. 对话框类中加入:

_RecordsetPtr m_pRecordset;

6. 注意使用:

1 2  下一页

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template