资源简介
数据库课程设计作业,学生学籍信息管理,内含源码、数据库文件和课程设计。

代码片段和文件信息
// 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代码
- 下一篇:运用定时器函数制作计时器
相关资源
- 数据库系统基础教程答案第三版机械
- 酒店管理系统基于Qt Creator5)
- 软考数据库系统工程师复习资料(完
- 设备管理系统源码
- MoNyog8.5+破解补丁
- ANSYS LS-DYNA
- Python全栈学习笔记面向对象大作业:
- 全国4级地址库,京东数据
- 一个超简单的企业管理系统(带ACCE
- PowerBuilder*图书馆管理系统*需求分析
- 数据库课设:图书管理系统报告
- 用汇编实现的学生成绩档案管理系统
- 教室管理系统.rar
- 基于MVC模式的会员管理系统
- 学生信息管理系统源码
- about 论坛信息管理系统
- 合同管理系统的源代码(附数据库)
- 保险公司管理系统(前台界面)
- Pb开发的酒店住宿管理系统
- ado数据库MFC图书管理系统vs2010
- 村居人口信息管理系统
- 数据库VFP课程设计
- 完整版家庭在线记账理财管理系统
- GUI银行管理系统
- 服装店进销存管理系统
- 数据库实现学生成绩管理系统选课管
- 排队机叫号 源代码
- 课程作业:模拟仓库管理系统
- Access数据库在线编辑器
- Php 导出数据为EXCEL程序
评论
共有 条评论