Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
S3PRow.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 1k
Category:
Game Server Simulator
Development Platform:
C/C++
- // S3PRow.h: interface for the S3PRow class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_S3PROW_H__792EA5AF_C922_4DA3_838C_8F515F7CC3A0__INCLUDED_)
- #define AFX_S3PROW_H__792EA5AF_C922_4DA3_838C_8F515F7CC3A0__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "KStdAfx.h"
- #include <map>
- #include <string>
- typedef std::map<std::string, std::string> ColumnAndValue;
- class S3PDBConnection;
- class S3PRow
- {
- public:
- int GetExpLikeInsertValue(std::string & exp);
- int GetExpLikeInsertKey(std::string & exp);
- S3PRow(const std::string & tableName, ColumnAndValue * pCAV, S3PDBConnection * pConn);
- virtual ~S3PRow();
- int GetExpLikeWhereAnd(std::string & exp);
- int GetExpLikeUpdate(std::string & exp);
- int GetExpLikeInsert(std::string & exp);
- protected:
- S3PRow(){};
- BOOL Init();
- BOOL IsNeedQuote(const std::string & column);
- int Quote(const std::string & value, std::string & outValue);
- int FixValue(const std::string & key, const std::string & value, std::string & outValue);
- protected:
- S3PDBConnection * m_pConn;
- ColumnAndValue * m_pCAV;
- std::string m_tableName;
- std::map<std::string, std::string> * m_columnInfoMap;
- };
- #endif // !defined(AFX_S3PROW_H__792EA5AF_C922_4DA3_838C_8F515F7CC3A0__INCLUDED_)