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

C/C++

  1. // S3PCardInfoDAO.cpp: implementation of the S3PCardInfoDAO class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "S3PCardInfoDAO.h"
  5. #include "S3PDBConnection.h"
  6. //////////////////////////////////////////////////////////////////////
  7. // Construction/Destruction
  8. //////////////////////////////////////////////////////////////////////
  9. S3PCardInfoDAO::S3PCardInfoDAO(S3PDBConnection * pConn)
  10. {
  11. m_pConn = pConn;
  12. }
  13. S3PCardInfoDAO::~S3PCardInfoDAO()
  14. {
  15. }
  16. std::string S3PCardInfoDAO::GetTableName()
  17. {
  18. return "cardInfo";
  19. }
  20. S3PDBConnection * S3PCardInfoDAO::GetConnection()
  21. {
  22. return m_pConn;
  23. }