S3PServerListDAO.cpp
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 1k
Development Platform:

C/C++

  1. //-----------------------------------------//
  2. //                                         //
  3. //  File : S3PServerListDAO.cpp    //
  4. // Author : Yang Xiaodong            //
  5. // Modified : 8/24/2002                //
  6. //                                         //
  7. //-----------------------------------------//
  8. #include "S3PServerListDAO.h"
  9. //////////////////////////////////////////////////////////////////////
  10. // Construction/Destruction
  11. //////////////////////////////////////////////////////////////////////
  12. S3PServerListDAO::S3PServerListDAO( S3PDBConnection* pConn )
  13. {
  14. m_pConn = pConn;
  15. }
  16. S3PServerListDAO::~S3PServerListDAO()
  17. {
  18. }
  19. std::string S3PServerListDAO::GetTableName()
  20. {
  21. return "ServerList";
  22. }
  23. S3PDBConnection* S3PServerListDAO::GetConnection()
  24. {
  25. return m_pConn;
  26. }