• 大小: 136KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-25
  • 语言: C/C++
  • 标签: VS2013MFC  ODBC  SQLSERVER  

资源简介

本次是在上一次的基础上完成了对数据库增删查改功能的添加。由于数据库是建在我的电脑里,所以下载资源之后是不能运行的,但是可以看我的博客里面的详细解释,参考这里的完整代码就能搞出来了。 博客链接:http://blog.csdn.net/my_acm/article/category/2774139

资源截图

代码片段和文件信息

// score.h : Cscore 类的实现



// Cscore 实现

// 代码生成在 2014年12月12日 19:50

#include “stdafx.h“
#include “score.h“
IMPLEMENT_DYNAMIC(Cscore CRecordset)

Cscore::Cscore(CDatabase* pdb)
: CRecordset(pdb)
{
m_stuid = L““;
m_stuname = L““;
m_stuclass = L““;
m_usualscore = 0;
m_testscore = 0;
m_totalscore = 0;
m_nFields = 6;
m_nDefaultType = dynaset;
}
//#error 安全问题:连接字符串可能包含密码。
// 此连接字符串中可能包含明文密码和/或其他重要
// 信息。请在查看完此连接字符串并找到所有与安全
// 有关的问题后移除 #error。可能需要将此密码存
// 储为其他格式或使用其他的用户身份验证。
CString Cscore::GetDefaultConnect()
{
return _T(“DSN=_SQL_SERVER;UID=sa;PWD=liang1993;APP=Microsoft\x00ae Visual Studio\x00ae 2013;WSID=USER-20140601YK;DATAbase=student“);
}

CString Cscore::GetDefaultSQL()
{
return _T(“[dbo].[score]“);
}

void Cscore::DoFieldExchange(CFieldExchange* pFX)
{
pFX->SetFieldType(CFieldExchange::outputColumn);
// RFX_Text() 和 RFX_Int() 这类宏依赖的是
// 成员变量的类型,而不是数据库字段的类型。
// ODBC 尝试自动将列值转换为所请求的类型
RFX_Text(pFX _T(“[stuid]“) m_stuid);
RFX_Text(pFX _T(“[stuname]“) m_stuname);
RFX_Text(pFX _T(“[stuclass]“) m_stuclass);
RFX_Long(pFX _T(“[usualscore]“) m_usualscore);
RFX_Long(pFX _T(“[testscore]“) m_testscore);
RFX_Long(pFX _T(“[totalscore]“) m_totalscore);

}
/////////////////////////////////////////////////////////////////////////////
// Cscore 诊断

#ifdef _DEBUG
void Cscore::AssertValid() const
{
CRecordset::AssertValid();
}

void Cscore::Dump(CDumpContext& dc) const
{
CRecordset::Dump(dc);
}
#endif //_DEBUG



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

     文件       3979  2014-12-12 19:40  Test\Test\ReadMe.txt

     文件      67777  2013-07-22 01:18  Test\Test\res\Test.ico

     文件        664  2014-12-12 19:40  Test\Test\res\Test.rc2

     文件       2790  2014-12-18 13:50  Test\Test\resource.h

     文件       1679  2014-12-12 19:53  Test\Test\score.cpp

     文件       1050  2014-12-12 19:51  Test\Test\score.h

     文件        137  2014-12-12 19:40  Test\Test\stdafx.cpp

     文件       1598  2014-12-12 19:51  Test\Test\stdafx.h

     文件        234  2014-12-12 19:40  Test\Test\targetver.h

     文件     110272  2014-12-18 15:46  Test\Test\Test.aps

     文件       2348  2014-12-12 19:40  Test\Test\Test.cpp

     文件        431  2014-12-12 19:40  Test\Test\Test.h

     文件      13408  2014-12-18 15:46  Test\Test\Test.rc

     文件       6372  2014-12-12 21:04  Test\Test\Test.vcxproj

     文件       2210  2014-12-12 19:51  Test\Test\Test.vcxproj.filters

     文件       9590  2014-12-18 18:30  Test\Test\TestDlg.cpp

     文件       1147  2014-12-18 14:20  Test\Test\TestDlg.h

     文件        958  2014-12-12 19:40  Test\Test.sln

    ..A..H.     28672  2014-12-18 18:30  Test\Test.v12.suo

     目录          0  2014-12-18 18:32  Test\Test\res

     目录          0  2014-12-18 18:32  Test\Test

     目录          0  2014-12-18 18:33  Test

----------- ---------  ---------- -----  ----

               255316                    22


评论

共有 条评论