35 lines
956 B
C++
35 lines
956 B
C++
#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);
|
|
|
|
//查询设备,dev_id=0则返回全部
|
|
bool queryInnerDevice(int dev_id, std::string& jsonResult);
|
|
protected:
|
|
//std::unique_ptr<sql::Connection> m_pDbConnection;
|
|
sql::Connection* m_pDbConnection;
|
|
private:
|
|
static OpDatabase m_instance;
|
|
};
|
|
|
|
#endif
|