S3PCardInfoDAO.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- // S3PCardInfoDAO.cpp: implementation of the S3PCardInfoDAO class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "S3PCardInfoDAO.h"
- #include "S3PDBConnection.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- S3PCardInfoDAO::S3PCardInfoDAO(S3PDBConnection * pConn)
- {
- m_pConn = pConn;
- }
- S3PCardInfoDAO::~S3PCardInfoDAO()
- {
- }
- std::string S3PCardInfoDAO::GetTableName()
- {
- return "cardInfo";
- }
- S3PDBConnection * S3PCardInfoDAO::GetConnection()
- {
- return m_pConn;
- }