emsApplication/applications/WebConfigure/cgiCommon/opmysql.h

32 lines
863 B
C++
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#ifndef __MY_OPERATE_MYSQL__
#define __MY_OPERATE_MYSQL__
#include <string>
#include <mysql_connection.h>
class OpDatabase
{
protected:
OpDatabase();
public:
~OpDatabase();
static OpDatabase* getInstance();
//¼ÆËã×Ö·û´®µÄMD5Öµ
static std::string CalculateMD5(const std::string& data);
void CloseDatabase();
bool OpenDatabase(const std::string& server = "tcp://127.0.0.1:3306", const std::string& dbuser = "root", const std::string& database="hjems");
void InsertMessage(const std::string& ts, const std::string& msg_type, const std::string& fsu, const std::string& content, int topic, int dev_id);
bool queryUser(const std::string& user_id, const std::string& passwd_md5, std::string& jsonResult);
protected:
//std::unique_ptr<sql::Connection> m_pDbConnection;
sql::Connection* m_pDbConnection;
private:
static OpDatabase m_instance;
};
#endif