⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 table.cpp

📁 课程设计的简单Access学生数据库系统
💻 CPP
字号:
// Table.cpp: implementation of the CTable class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "sm.h"
#include "Table.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

//##ModelId=40A481F20062
CTable::CTable(CString s):TD(&theDatabase)
{
	Table = s;
}

//##ModelId=40A481F2006E
CTable::~CTable()
{
	RS.Close();
	TD.Close();
}

//##ModelId=40A481F20040
void CTable::Open()
{
	TD.Open(Table);
	RS.Open(&TD);
}

//##ModelId=40A481F2003E
CDaoRecordset * CTable::GetRS()
{
	return &RS;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -