S3PServerListDAO.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- //-----------------------------------------//
- // //
- // File : S3PServerListDAO.cpp //
- // Author : Yang Xiaodong //
- // Modified : 8/24/2002 //
- // //
- //-----------------------------------------//
- #include "S3PServerListDAO.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- S3PServerListDAO::S3PServerListDAO( S3PDBConnection* pConn )
- {
- m_pConn = pConn;
- }
- S3PServerListDAO::~S3PServerListDAO()
- {
- }
- std::string S3PServerListDAO::GetTableName()
- {
- return "ServerList";
- }
- S3PDBConnection* S3PServerListDAO::GetConnection()
- {
- return m_pConn;
- }