• 大小: 12KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-07
  • 语言: 数据库
  • 标签: ue4  mysql  database  

资源简介

SimpleMySQLAssistPlugin1.1.0版本修正版.zip的更新包,注意需要首先获取该版本插件包,支持查询蓝图动态解析数据到结构体, ue4操作mysql 插件教程在我博客https://blog.csdn.net/u010925014/article/details/88876586 ,如遇地址失效,请去博客首页查找。

资源截图

代码片段和文件信息

// Fill out your copyright notice in the Description page of Project Settings.

#include “MySQLConnectionObj.h“
#include “../Public/MySQLHelperFunctionLib.h“




//void UMySQLConnectionObj::InitMySQLConnectionInfo(const FString& MySQLHostIP const FString& MySQLUser const FString& MySQLPassword const FString& MySQLDatabaseName)
//{
// this->MySQLHostIP = MySQLHostIP;
// this->MySQLUser = MySQLUser;
// this->MySQLPassword = MySQLPassword;
// this->MySQLDatabaseName = MySQLDatabaseName;
//}

bool UMySQLConnectionObj::ConnectMySQL(const FString& MySQLHostIP const FString& MySQLUser const FString& MySQLPassword const FString& MySQLDatabaseName const bool ShowErrorMsg)
{
this->MySQLHostIP = MySQLHostIP;
this->MySQLUser = MySQLUser;
this->MySQLPassword = MySQLPassword;
this->MySQLDatabaseName = MySQLDatabaseName;
bool bIsOK = false;
FString Msg = ““;

con = UMySQLHelperFunctionLib::MySqlDBConnect(con MySQLHostIP MySQLUser MySQLPassword MySQLDatabaseName);

if (con)
{
Msg = “The database connect Successful! “;
bIsOK = true;
}
else
{
Msg = “The database connection failed. Check whether the SQL statement or the database exists or not! “;
bIsOK = false;
}
UMySQLHelperFunctionLib::MySQLExecuteShowMsgOnScreen(Msg ShowErrorMsg);
return bIsOK;
}

void UMySQLConnectionObj::DisConnectMySQL()
{
if (con)
{
con->close();
delete con;
}
}

bool UMySQLConnectionObj::GetMySQLConnectionStateIsClosed()
{
if (con && con->isClosed() )
return true;
else
return false;
}

bool UMySQLConnectionObj::ReConnectMySQL()
{
if (con && con->reconnect())
return true;
else
return false;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1697  2019-04-06 15:46  SimpleMySQLAssistPlugin\Private\MySQLConnectionObj.cpp

     文件      29488  2019-05-22 14:22  SimpleMySQLAssistPlugin\Private\MySQLHelperFunctionLib.cpp

     文件        680  2019-02-18 19:51  SimpleMySQLAssistPlugin\Private\SimpleMySQLAssistPlugin.cpp

     文件       2613  2019-04-06 15:21  SimpleMySQLAssistPlugin\Public\MySQLConnectionObj.h

     文件      13629  2019-05-22 14:15  SimpleMySQLAssistPlugin\Public\MySQLHelperFunctionLib.h

     文件        335  2019-02-18 19:51  SimpleMySQLAssistPlugin\Public\SimpleMySQLAssistPlugin.h

     文件        136  2019-05-22 14:40  SimpleMySQLAssistPlugin\使用说明.txt

     目录          0  2019-05-21 17:23  SimpleMySQLAssistPlugin\Private

     目录          0  2019-05-21 17:23  SimpleMySQLAssistPlugin\Public

     目录          0  2019-05-22 14:40  SimpleMySQLAssistPlugin

----------- ---------  ---------- -----  ----

                48578                    10


评论

共有 条评论