VC下利用ADO访问Access数据库(Use ADO)(转载)
VC下利用ADO直接访问Access数据库步骤不需要用户建立ODBC数据源) 1.包含相关动态链接库 //在StdAfx.h中,最后部分添加(注意:一定要在最后部分,否则会编译出错) #import c:/Program Files/Common Files/System/ado/msado15.dll no_namespace rename(EOF,adoEO
VC下利用ADO直接访问Access数据库步骤不需要用户建立ODBC数据源)
1.包含相关动态链接库
-
//在StdAfx.h中,最后部分添加(注意:一定要在最后部分,否则会编译出错)
-
#import "c:/Program Files/Common Files/System/ado/msado15.dll" no_namespace rename("EOF","adoEOF")
2.连接的创建与初始化
-
//相关成员变量
-
_ConnectionPtr m_conn;
-
_RecordsetPtr m_res;
-
-
//成员函数块(一般写在CDocment类构造函数即可)
-
try
-
{
-
CoInitialize(NULL);
-
m_conn.CreateInstance(_uuidof(Connection));
-
CString strFileName;
-
strFileName = "MYBASE.mdb"; //添加相应你的数据库的文件名,编辑状态应放在源文件目录下
-
m_conn->Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + strFileName,
-
"","",adConnectUnspecified); //用户名,密码
-
m_res.CreateInstance(_uuidof(Recordset));
-
}
-
catch(_com_error e) //异常检测
-
{
-
AfxMessageBox("数据库连接错误!",MB_ICONEXCLAMATION);
-
exit(0); //错误,程序退出
-
}
3.数据库相关操作(操作方法很多,这里只提供一种简易操作)
假设数据库表设计如下:
表名: MYTABLE
表设计:
自动编号类型 ID
字符串类型 NAME
BOOL类型 SEX
(1)增
-
_variant_t m_resa; //可声明为成员变量
-
-
CString strMyName = "MyName";
-
CString strSex = "true";
-
-
CString sql;
-
sql = "insert into MYTABLE (NAME,SEX) ";
-
sql += "values ('" + strMyName +"',";
-
sql += " " + strSex + " ";
-
sql += ")";
-
-
try
-
{
-
m_conn->Execute((_bstr_t)sql,&m_resa,adCmdText); //执行"增"操作
-
}
-
catch(_com_error e)
-
{
-
AfxMessageBox("数据库增错误",MB_ICONEXCLAMATION);
-
exit(0); //错误,程序退出
-
}
(2)删
-
_variant_t m_resa; //可声明为成员变量
-
-
CString strID = "1"; //所要删除记录的ID号
-
CString sql;
-
-
sql = "delete from MYTABLE "; //注意需要有空格
-
sql += "where ID = " + strID; //其他语法详查SQL语句
-
-
try
-
{
-
m_conn->Execute((_bstr_t)sql,&m_resa,adCmdText); //执行"增"操作
-
}
-
catch(_com_error e)
-
{
-
AfxMessageBox("数据库删错误",MB_ICONEXCLAMATION);
-
exit(0); //错误,程序退出
-
}
(3)改
-
_variant_t m_resa; //可声明为成员变量
-
-
CString sql;
-
CString strMyName = "MyName";
-
CString strSex = "true";
-
CString strID = "1"; //所要更新的记录ID
-
-
sql = "update MYTABLE set ";
-
sql += "NAME = '" + strMyName +"', ";
-
sql += "SEX = " + strSex + " ";
-
sql += "where id = " + strID;
-
-
try
-
{
-
m_conn->Execute((_bstr_t)sql,&m_resa,adCmdText); //执行"增"操作
-
}
-
catch(_com_error e)
-
{
-
AfxMessageBox("数据库删错误",MB_ICONEXCLAMATION);
-
exit(0); //错误,程序退出
-
}
(4)查
-
_variant_t m_resa; //可声明为成员变量
-
CString sql;
-
sql = "Select * from MYTABLE"; //查询语句改变,相应下面的语句也要改变
-
-
//#include
//需加入头文件 -
//CArray
m_Array; //可用容器保存你取得的数据 -
-
try
-
{
-
m_res = m_conn->Execute((_bstr_t)sql,&m_resa,adCmdText);
-
}
-
catch(_com_error e)
-
{
-
AfxMessageBox("数据库查错误",MB_ICONEXCLAMATION);
-
exit(0);
-
}
-
-
//m_Array.RemoveAll(); //清空容器
-
-
try
-
{
-
while(!m_res->adoEOF) //循环遍历记录
-
{
-
_variant_t vID, vName, vSex;
-
-
vID = m_res->GetCollect("ID");
-
vName = m_res->GetCollect("NAME");
-
vSex = m_res->GetCollect("SEX");
-
-
///////////////////////////////////////////////
-
int nID;
-
nID = (long)vID.lVal;
-
///////////////////////////////////////////////
-
CString strName;
-
if(VT_NULL != vName.vt ) //如果数据不为空
-
{
-
strName = (LPCTSTR)vName.bstrVal;
-
}
-
///////////////////////////////////////////////
-
bool bSex;
-
if(VT_NULL != vSex.vt )
-
{
-
bSex = (bool)vSex.boolVal;
-
}
-
////////////////////////////////////////////////
-
-
//CMyClass one(nID, strName, bSex); //创建数据对象
-
//m_Array.Add(one); //加入数组
-
-
m_res->MoveNext(); //移动到下一条记录
-
}
-
}
-
catch(_com_error e)
-
{
-
AfxMessageBox("数据库查错误",MB_ICONEXCLAMATION);
-
exit(0);
-
}
4.关闭数据库
-
try
-
{
-
if(m_res != NULL)
-
{
-
m_res->Close(); //关闭记录集
-
}
-
if(m_conn != NULL)
-
{
-
m_conn->Close(); //关闭连接
-
}
-
}
-
catch(_com_error e)
-
{
-
AfxMessageBox("数据库关闭错误",MB_ICONEXCLAMATION);
-
exit(0);
-
}
5.总结
数据库操作多种多样,可以查查相关资料
这里只介绍了简单的一种操作,面向对象封装一下,直接调用即可

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

1. Open settings in Windows 11. You can use Win+I shortcut or any other method. 2. Go to the Apps section and click Apps & Features. 3. Find the application you want to prevent from running in the background. Click the three-dot button and select Advanced Options. 4. Find the [Background Application Permissions] section and select the desired value. By default, Windows 11 sets power optimization mode. It allows Windows to manage how applications work in the background. For example, once you enable battery saver mode to preserve battery, the system will automatically close all apps. 5. Select [Never] to prevent the application from running in the background. Please note that if you notice that the program is not sending you notifications, failing to update data, etc., you can

DeepSeek cannot convert files directly to PDF. Depending on the file type, you can use different methods: Common documents (Word, Excel, PowerPoint): Use Microsoft Office, LibreOffice and other software to export as PDF. Image: Save as PDF using image viewer or image processing software. Web pages: Use the browser's "Print into PDF" function or the dedicated web page to PDF tool. Uncommon formats: Find the right converter and convert it to PDF. It is crucial to choose the right tools and develop a plan based on the actual situation.

The Java reflection mechanism allows programs to dynamically modify the behavior of classes without modifying the source code. By operating the Class object, you can create instances through newInstance(), modify private field values, call private methods, etc. Reflection should be used with caution, however, as it can cause unexpected behavior and security issues, and has a performance overhead.

Common exception types and their repair measures in Java function development During the development of Java functions, various exceptions may be encountered, which affect the correct execution of the function. The following are common exception types and their repair measures: 1. NullPointerException Description: Thrown when accessing an object that has not been initialized. Fix: Make sure you check the object for non-null before using it. Sample code: try{Stringname=null;System.out.println(name.length());}catch(NullPointerExceptione){

Oracle can read dbf files through the following steps: create an external table and reference the dbf file; query the external table to retrieve data; import the data into the Oracle table.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.
