• 大小: 1.99MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 标签: 数据库  

资源简介

数据库课程设计 数据库 课程设计 C++ 数据库 课程设计 C++

资源截图

代码片段和文件信息

#include “StdAfx.h“
#include “connection.h“



CCONNECTION::CCONNECTION(void)
{
}

CCONNECTION::~CCONNECTION(void)
{
}

void CCONNECTION::Initialize()
{CoInitialize(NULL); //初始化OLE/COM库环境   
 m_pConnection.CreateInstance(_uuidof(Connection));//初始化Connection指针                   
 m_pRecordset.CreateInstance(_uuidof(Recordset));//初始化Recordset指针 
}
void CCONNECTION::Connect(CString s)
{
try 
{  //开始搜索
//连接数据源
m_pConnection->Open(DATASOURCEUSERPW0);   
m_pRecordset->Open(_bstr_t(s)(IDispatch*)m_pConnection
adOpenDynamicadLockOptimisticadCmdText); }

catch (_com_error e)
{//异常处理
//AfxMessageBox(“连接数据库操作失败,确认数据库“教学管理系统.mdb”是否在当前路径下!“);    
AfxMessageBox(e.Description());
CoUninitialize();
return;    
}
}

 
void CCONNECTION::Unitialize

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    2314240  2007-06-30 22:27  teachManageSystem\可执行文件\教学管理系统.exe

     文件     327680  2007-06-30 22:03  teachManageSystem\可执行文件\教学管理系统.mdb

     文件       1013  2007-06-16 17:10  teachManageSystem\源代码\Connection.cpp

     文件        478  2006-07-08 22:22  teachManageSystem\源代码\Connection.h

     文件       7179  2007-06-16 22:15  teachManageSystem\源代码\CouInfoMana.cpp

     文件       1466  2007-06-16 22:14  teachManageSystem\源代码\CouInfoMana.h

     文件       8319  2007-06-17 01:08  teachManageSystem\源代码\GradeMana.cpp

     文件       1676  2007-06-17 01:05  teachManageSystem\源代码\GradeMana.h

     文件      15589  2007-06-17 01:02  teachManageSystem\源代码\GradeShow.cpp

     文件       1317  2007-06-17 01:02  teachManageSystem\源代码\GradeShow.h

     文件       2375  2007-06-16 21:34  teachManageSystem\源代码\History.cpp

     文件       1250  2007-06-16 21:35  teachManageSystem\源代码\History.h

     文件       4360  2007-06-18 17:29  teachManageSystem\源代码\MainWindow.cpp

     文件       2108  2007-06-18 17:00  teachManageSystem\源代码\MainWindow.h

     文件       3657  2007-06-15 01:24  teachManageSystem\源代码\ReadMe.txt

     文件       2024  2007-06-16 17:01  teachManageSystem\源代码\Register.cpp

     文件       1232  2007-06-16 17:14  teachManageSystem\源代码\Register.h

     文件       7906  2007-06-18 22:22  teachManageSystem\源代码\resource.h

     文件       8689  2007-06-16 21:53  teachManageSystem\源代码\SdeptInfoMana.cpp

     文件       1525  2007-06-16 23:45  teachManageSystem\源代码\SdeptInfoMana.h

     文件       6137  2007-06-17 17:25  teachManageSystem\源代码\SelCouResult.cpp

     文件       1643  2007-06-17 00:13  teachManageSystem\源代码\SelCouResult.h

     文件       8646  2007-06-17 17:16  teachManageSystem\源代码\SELECOUMANA.cpp

     文件       1624  2007-06-17 00:02  teachManageSystem\源代码\SELECOUMANA.h

     文件      65723  2007-06-17 02:09  teachManageSystem\源代码\Statics.cpp

     文件       1644  2007-06-17 02:07  teachManageSystem\源代码\Statics.h

     文件        214  2007-06-15 01:24  teachManageSystem\源代码\StdAfx.cpp

     文件       1054  2007-06-15 01:24  teachManageSystem\源代码\StdAfx.h

     文件      11195  2007-06-16 19:42  teachManageSystem\源代码\StuCou.cpp

     文件       1597  2007-06-16 19:28  teachManageSystem\源代码\StuCou.h

............此处省略72个文件信息

评论

共有 条评论