
commit de8d79b73e560814ff9fc8a0c3418009682c5ef8 Author: SAIPO <grasste0403@hotmail.com> Date: Tue Nov 23 21:25:44 2021 +0800 任务:搭建Mysql数据库相关框架 1.完成Mysql动态链接库的导入 2.实现基本的服务器连接数据框架 3.实现Sql语句查询框架
16 lines
367 B
C#
16 lines
367 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(menuName = "MySQL/Create SqlseverData")]
|
|
public class DataScriptableObject : ScriptableObject
|
|
{
|
|
public string IP;
|
|
public string Port;
|
|
public string Database;
|
|
public string User;
|
|
public string Password;
|
|
public string Charset;
|
|
}
|