📄 tableholder.h
字号:
// TableHolder.h: interface for the CTableHolder class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_TABLEFACTORY_H__BD32C68D_D3AE_11D6_9CE6_AEFF2E4B123A__INCLUDED_)
#define AFX_TABLEFACTORY_H__BD32C68D_D3AE_11D6_9CE6_AEFF2E4B123A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#pragma warning(disable:4100)
#include <map>
#pragma warning(default:4100)
#include "identity.h"
#ifdef ETLLIB_DLL
#define ETLLIB_EXPORT __declspec(dllexport)
#else
#define ETLLIB_EXPORT __declspec(dllimport)
#endif
class CDBTable;
class ETLLIB_EXPORT CTableHolder
{
public:
friend class CDBTable;
CTableHolder();
virtual ~CTableHolder();
void SetDBManager(const _ConnectionPtr& pDBMan)
{
m_pConn = pDBMan;
}
_ConnectionPtr GetDBManager() const
{
return m_pConn;
}
bool HasSameDatabase(const CTableHolder& other) const;
void SetAddMissingFields(bool) {}
bool Lookup(LPCWSTR pszTableName, CDBTable*& rpDBTable) const;
void SetDBTable(LPCWSTR pszTableName, CDBTable* pDBTable);
void FreeStatements();
Identity GetIdentity(LPCWSTR pszValue);
void SetReadOnly(bool bReadOnly)
{
m_bReadOnly = bReadOnly;
}
bool IsReadOnly() const
{
return m_bReadOnly;
}
private:
_ConnectionPtr m_pConn;
struct CompareWStrings
{
bool operator() (LPCWSTR s1, LPCWSTR s2) const
{
return wcscmp(s1, s2) < 0;
}
};
typedef std::map<LPCWSTR, CDBTable*, CompareWStrings> CMapLPCWSTR2PDBTable;
CMapLPCWSTR2PDBTable m_mapDBTables;
CIdentityShared m_IdentityShared;
bool m_bReadOnly;
};
#endif // !defined(AFX_TABLEFACTORY_H__BD32C68D_D3AE_11D6_9CE6_AEFF2E4B123A__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -