资源简介
自己做的数据库 课设代码+报告 nuaa 做的不好 仅供参考
代码片段和文件信息
// AdmADDCDialog.cpp : implementation file
//
#include “stdafx.h“
#include “Student.h“
#include “AdmADDCDialog.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAdmADDCDialog dialog
CAdmADDCDialog::CAdmADDCDialog(CWnd* pParent /*=NULL*/)
: CDialog(CAdmADDCDialog::IDD pParent)
{
//{{AFX_DATA_INIT(CAdmADDCDialog)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CAdmADDCDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAdmADDCDialog)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CAdmADDCDialog CDialog)
//{{AFX_MSG_MAP(CAdmADDCDialog)
ON_BN_CLICKED(IDC_ADMADDC OnAdmAddc)
ON_BN_CLICKED(IDC_ADMCANCLES OnAdmcancles)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CAdmADDCDialog message handlers
void CAdmADDCDialog::OnAdmAddc()
{
// TODO: Add your control notification handler code here
CDatabase db;
db.OpenEx(“DSN=Student“);
CString strSQL;
CRecordset rs(&db);
CString temp1temp2temp3temp4temp5;
GetDlgItemText(IDC_EDIT1temp1);
GetDlgItemText(IDC_EDIT2temp2);
GetDlgItemText(IDC_EDIT3temp3);
GetDlgItemText(IDC_EDIT4temp4);
GetDlgItemText(IDC_EDIT5temp5);
if(temp1.IsEmpty())
{
AfxMessageBox(“课程编号不能为空!“);
return;
}
strSQL.Format(“select * from Course where courseNum=‘%s‘“temp1);
rs.Open(CRecordset::snapshotstrSQL);
int i=rs.GetRecordCount();
if(i!=0)
{
AfxMessageBox(“课程编号已经存在!“);
SetDlgItemText(IDC_EDIT1““);
return;
}
strSQL.Format(“insert into Course(courseNumcourseNamecourseTimecourseScorecourseBeforehand) values(‘%s‘‘%s‘‘%s‘‘%s‘‘%s‘)“temp1temp2temp3temp4temp5);
db.ExecuteSQL(strSQL);
AfxMessageBox(“添加课程成功!“);
SetDlgItemText(IDC_EDIT1““);
SetDlgItemText(IDC_EDIT2““);
SetDlgItemText(IDC_EDIT3““);
SetDlgItemText(IDC_EDIT4““);
SetDlgItemText(IDC_EDIT5““);
}
void CAdmADDCDialog::OnAdmcancles()
{
// TODO: Add your control notification handler code here
SendMessage(WM_CLOSE);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2344 2011-06-14 08:26 数据库040830317金龙\Student\AdmADDCDialog.cpp
文件 1294 2010-03-04 14:23 数据库040830317金龙\Student\AdmADDCDialog.h
文件 2402 2011-06-14 08:28 数据库040830317金龙\Student\AdmADDSDialog.cpp
文件 1292 2010-03-04 20:08 数据库040830317金龙\Student\AdmADDSDialog.h
文件 1444 2011-06-14 10:06 数据库040830317金龙\Student\AdmCcDialog.cpp
文件 1302 2011-06-14 10:06 数据库040830317金龙\Student\AdmCcDialog.h
文件 4460 2011-06-14 15:35 数据库040830317金龙\Student\AdmChangecDialog.cpp
文件 1339 2010-03-04 15:49 数据库040830317金龙\Student\AdmChangecDialog.h
文件 4253 2011-06-14 15:31 数据库040830317金龙\Student\AdmChangesDialog.cpp
文件 1343 2010-03-04 15:18 数据库040830317金龙\Student\AdmChangesDialog.h
文件 1954 2011-06-14 08:26 数据库040830317金龙\Student\AdmCourseDialog.cpp
文件 1280 2010-03-03 21:20 数据库040830317金龙\Student\AdmCourseDialog.h
文件 4501 2011-06-14 15:17 数据库040830317金龙\Student\AdmDeletecDialog.cpp
文件 1338 2010-03-04 14:46 数据库040830317金龙\Student\AdmDeletecDialog.h
文件 4332 2011-06-14 15:16 数据库040830317金龙\Student\AdmDeletesDialog.cpp
文件 1341 2010-03-04 15:34 数据库040830317金龙\Student\AdmDeletesDialog.h
文件 5012 2011-06-14 13:38 数据库040830317金龙\Student\AdmDialog.cpp
文件 1769 2011-06-14 13:36 数据库040830317金龙\Student\AdmDialog.h
文件 4820 2011-06-14 08:28 数据库040830317金龙\Student\AdmStudentDialog.cpp
文件 1432 2010-03-04 14:21 数据库040830317金龙\Student\AdmStudentDialog.h
文件 4748 2011-06-14 15:20 数据库040830317金龙\Student\ChangeCourseDialog.cpp
文件 1390 2011-06-14 15:20 数据库040830317金龙\Student\ChangeCourseDialog.h
文件 2376 2010-03-05 19:21 数据库040830317金龙\Student\ChangeKey.cpp
文件 1264 2010-03-05 19:21 数据库040830317金龙\Student\ChangeKey.h
文件 4573 2011-06-14 15:03 数据库040830317金龙\Student\ChangeStudentDialog.cpp
文件 1401 2011-06-14 14:49 数据库040830317金龙\Student\ChangeStudentDialog.h
文件 2588 2010-03-07 11:03 数据库040830317金龙\Student\CJDialog.cpp
文件 1216 2010-03-07 11:03 数据库040830317金龙\Student\CJDialog.h
文件 5046 2011-06-14 08:26 数据库040830317金龙\Student\CourseDialog.cpp
文件 1377 2010-03-04 14:20 数据库040830317金龙\Student\CourseDialog.h
............此处省略129个文件信息
相关资源
- struts2登录权限验证(带数据库)
- TXT 转化为 VFP数据库 (TXT2DBf)
- 地铁数据库
- 鼎捷易飞ERP数据表(含字段)
- 陌陌聊天软件(客户端+服务器端+数据
- 数据库系统原理及应用教程第三版课
- PI数据库AFSDK
- VFP开发的工资管理系统数据库
- 北邮大三下 数据库实验报告合集
- 数据库 课程设计 电信收费管理信息系
- 数据库课设 人事档案管理系统
- 指纹识别系统包含了指纹数据库 源码
- 分布式数据库课件(中科院)
- 毕业论文管理系统源代码+数据库文件
- 百度地图API数据库经纬度GPS数据在地
- OA系统项目完整源码+数据库文件
- Ajax 异步请求-校验用户名唯一性
- MIT人脸数据库
- 全国各地银行行名行号可导入数据库
- visual basic 数据库系统开发导航第二版
- 学生选课和成绩管理系统
- 数据库 公司人事管理系统源代码+报告
- 数据库系统概念中文第六版课后答案
- 银行账户管理系统数据库
- 数据库系统原理
- 数据库课程设计 论坛管理信息系统
- 数据库原理及其应用教程第三版课件
- VC数据库编程.pdf(文字版)
- 王珊 陈红 数据库系统原理教程 清华
- 数据库--张凤荔.rar
评论
共有 条评论