资源简介
数据库课程设计作业,学生学籍信息管理,内含源码、数据库文件和课程设计。
代码片段和文件信息
// ADOtext.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ADOtext.h“
#include “ADOtextDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CADOtextApp
BEGIN_MESSAGE_MAP(CADOtextApp CWinApp)
//{{AFX_MSG_MAP(CADOtextApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CADOtextApp construction
CADOtextApp::CADOtextApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CADOtextApp object
CADOtextApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CADOtextApp initialization
BOOL CADOtextApp::InitInstance()
{
AfxEnableControlContainer();
AfxOleInit(); //我增加的
m_pConnection.CreateInstance(__uuidof(Connection));//我增加的
//在ADO操作中建议语句中要常用try...catch()来捕获错误信息,
//因为它有时会经常出现一些想不到的错误
try
{
//打开本地 Sql Server库student
m_pConnection->Open(“driver={SQL Server};Server=EBA4DD21DB3548E;Database=SM;UID=;PWD=“
““““adModeUnknown);
//Server后是服务器的计算机名,Database后是数据库名
//这里使用的windows验证,没有设置用户名和密码,
//如果是windows和SQL server混合验证,UID=““;PWD=““要写入相应的用户名和密码
}
catch(_com_error e)
{
AfxMessageBox(“数据库连接失败!“);
return FALSE;
}
// 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
CADOtextDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-01-16 23:26 学生学籍信息管理 数据库课程设计报告\
文件 868864 2013-01-16 21:03 学生学籍信息管理 数据库课程设计报告\SM备份
文件 770048 2013-06-21 17:33 学生学籍信息管理 数据库课程设计报告\学生学籍信息管理课程设计报告.doc
目录 0 2013-01-16 23:19 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\
目录 0 2013-01-16 23:16 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\
文件 40344 2013-01-16 16:44 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.aps
文件 5463 2013-01-16 22:58 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.clw
文件 2727 2013-01-15 20:54 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.cpp
文件 4929 2013-01-16 22:59 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.dsp
文件 522 2013-01-15 00:49 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.dsw
文件 1378 2013-01-15 09:59 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.h
文件 132096 2013-01-16 22:59 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.ncb
文件 48640 2013-01-16 22:59 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.opt
文件 1759 2013-01-16 22:42 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.plg
文件 11454 2013-01-16 16:44 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtext.rc
文件 5297 2013-01-16 12:58 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtextDlg.cpp
文件 1480 2013-01-15 10:01 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\ADOtextDlg.h
目录 0 2013-01-16 23:16 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\
文件 172126 2013-01-16 21:26 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\ADOtext.exe
文件 556536 2013-01-16 21:26 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\ADOtext.ilk
文件 39347 2013-01-15 20:58 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\ADOtext.obj
文件 7773204 2013-01-15 16:43 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\ADOtext.pch
文件 680960 2013-01-16 21:26 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\ADOtext.pdb
文件 5336 2013-01-16 16:44 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\ADOtext.res
文件 59235 2013-01-16 16:44 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\ADOtextDlg.obj
文件 28542 2013-01-16 16:44 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\MAIN.obj
文件 90751 2008-04-14 20:00 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\msado15.tlh
文件 76680 2008-04-14 20:00 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\msado15.tli
文件 10277 2013-01-15 18:13 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\NEW.obj
文件 117630 2013-01-16 09:19 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\StatusDlg.obj
文件 133564 2013-01-15 16:43 学生学籍信息管理 数据库课程设计报告\执行文件及源代码\ADOtext\Debug\StdAfx.obj
............此处省略31个文件信息
- 上一篇:AnyQ代码
- 下一篇:运用定时器函数制作计时器
相关资源
- 图书销售管理系统数据库源码都有
- 机器学习-MIT行人检测数据库
- 网吧计费管理系统有源代码
- 医院管理系统源码
- 旅行社客户管理系统课程设计
- 实验数据---数据库系统概论第5版习题
- 学生管理系统-windows
- 人事工资管理系统.zip
- 三层架构酒店管理系统带数据库
- 北大青鸟Web项目新闻管理系统
- .net住宅小区居民信息管理系统的设计
- 学生党员信息管理系统.rar
- 中软酒店管理系统操作说明书
- Yale Face人脸表情数据库
- 数据库课程设计--图书销售系统
- 全国POI数据库
- 基于EasyUI的仓库管理系统
- 学生管理系统实验报告
- 图书馆管理系统软件工程85281
- MyQQ项目源代码(有现成的源代码、数
- 基于DELPHI7的学生宿舍管理系统含完整
- 基于ssh的校友信息管理系统
- 第三方仓储管理系统的研究与开发.
- 期刊稿件管理系统
- 美萍培训班管理系统标准版2010V1完美
- 宿舍管理系统源代码+论文 有图形界面
- 加油站客户信息管理系统的设计与实
- 数据库系统概论学习指导与习题解答
- 2014人事工资管理系统单机版完美破解
- 宾馆管理系统
评论
共有 条评论