📄 customerset.cpp
字号:
// CustomerSet.h : Implementation of the CCustomerSet class
// CCustomerSet implementation
// code generated on 18 September 2007, 18:41
#include "stdafx.h"
#include "CustomerSet.h"
IMPLEMENT_DYNAMIC(CCustomerSet, CRecordset)
CCustomerSet::CCustomerSet(CDatabase* pdb)
: CRecordset(pdb)
, m_CustomerIDparam("")
{
m_CustomerID = "";
m_CompanyName = "";
m_ContactName = "";
m_ContactTitle = "";
m_Address = "";
m_City = "";
m_Region = "";
m_PostalCode = "";
m_Country = "";
m_Phone = "";
m_Fax = "";
m_nFields = 11;
m_nParams = 1; // Number of parameters
m_nDefaultType = snapshot;
}
// #error Security Issue: The connection string may contain a password
// The connection string below may contain plain text passwords and/or
// other sensitive information. Please remove the #error after reviewing
// the connection string for any security related issues. You may want to
// store the password in some other form or use a different user authentication.
CString CCustomerSet::GetDefaultConnect()
{
return _T("DSN=Northwind;DBQ=C:\\Model Access DB\\Northwind.mdb;DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=5;UID=admin;");
}
CString CCustomerSet::GetDefaultSQL()
{
return _T("[Customers]");
}
void CCustomerSet::DoFieldExchange(CFieldExchange* pFX)
{
pFX->SetFieldType(CFieldExchange::outputColumn);
// Macros such as RFX_Text() and RFX_Int() are dependent on the
// type of the member variable, not the type of the field in the database.
// ODBC will try to automatically convert the column value to the requested type
RFX_Text(pFX, _T("[CustomerID]"), m_CustomerID);
RFX_Text(pFX, _T("[CompanyName]"), m_CompanyName);
RFX_Text(pFX, _T("[ContactName]"), m_ContactName);
RFX_Text(pFX, _T("[ContactTitle]"), m_ContactTitle);
RFX_Text(pFX, _T("[Address]"), m_Address);
RFX_Text(pFX, _T("[City]"), m_City);
RFX_Text(pFX, _T("[Region]"), m_Region);
RFX_Text(pFX, _T("[PostalCode]"), m_PostalCode);
RFX_Text(pFX, _T("[Country]"), m_Country);
RFX_Text(pFX, _T("[Phone]"), m_Phone);
RFX_Text(pFX, _T("[Fax]"), m_Fax);
pFX->SetFieldType(CFieldExchange::param); // Set parameter mode
RFX_Text(pFX, _T("CustomerIDParam"), m_CustomerIDparam);
}
/////////////////////////////////////////////////////////////////////////////
// CCustomerSet diagnostics
#ifdef _DEBUG
void CCustomerSet::AssertValid() const
{
CRecordset::AssertValid();
}
void CCustomerSet::Dump(CDumpContext& dc) const
{
CRecordset::Dump(dc);
}
#endif //_DEBUG
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -