【VC开源代码栏目提醒】:文章导读:在新的一年中,各位网友都进入紧张的学习或是工作阶段。网学会员整理了VC开源代码-Demo4.cpp的相关内容供大家参考,祝大家在新的一年里工作和学习顺利!
// ADODemo.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "iostream.h"
//导入ADO类型库
#import "c:\Program Files\Common Files\System\ADO\msado15.dll" no_namespace rename("EOF", "EndOfFile")
int main(int argc, char* argv[])
{
//初始化Com对象
CoInitialize(NULL);
try
{
//初始化数据库连接对象
_ConnectionPtr pConn("ADODB.Connection");
//打开数据库连接
pConn->Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Demo.mdb;Persist Security Info=False", "", "", adConnectUnspecified);
pConn->Execute("Delete From UserInfo Where UserName = \"wzy\"", 0, adCmdText);
//关闭数据库连接
pConn->Close();
}
catch(_com_error &e)
{
cout<<e.ErrorMessage()<<endl;
}
return 0;
}
上一篇:
Demo3.cpp
下一篇:
4种小菜缓解孕妈咪不适