Пример #1
0
    public void Update <T, P>(string Keyword, T value, string column, P data, string tableName)
    {
        MySqlConnection conn = MySqlOpr.GetMySqlConnection(m_Datasource, m_Port, m_Database, m_User, m_Pwd, true);  // 连接数据库

        if (conn == null)
        {
            Debug.LogError("据库空链接");
        }

        string where = string.Format("{0} = '{1}'", Keyword, value);
        string set = string.Format("{0} = '{1}'", column, data);

        MySqlOpr.Update(conn, tableName, set, where);
    }
Пример #2
0
    /// <summary>
    /// 将一个数据表转化成对应的类并存储在字典里
    /// </summary>
    /// <typeparam name="K">字典Key的类型</typeparam>
    /// <typeparam name="T">数据表对应的类</typeparam>
    /// <param name="tableName">数据表名</param>
    /// <param name="dicId">要定义为字典K的字段名</param>
    /// <returns></returns>
    public Dictionary <K, T> TableToEntity <K, T>(string tableName, string dicId, string columnNames, string condition = null) where T : class, new()
    {
        Dictionary <K, T> returnDatas = new Dictionary <K, T>();
        MySqlConnection   conn        = MySqlOpr.GetMySqlConnection(m_Datasource, m_Port, m_Database, m_User, m_Pwd, true); // 连接数据库

        if (conn == null)
        {
            Debug.LogError("据库空链接");
            return(returnDatas);
        }

        MySqlDataReader reader = MySqlOpr.Select(conn, tableName, columnNames, condition);                                   // 查找表

        if (reader == null)
        {
            Debug.LogError("数据库读取失败");
            return(returnDatas);
        }

        Type   type    = typeof(T);           // 获取T的类型信息
        K      dicKey  = default(K);          // 字典存储Id
        int    id      = 0;
        string numName = string.Empty;

        try
        {
            while (reader.Read())
            {
                id = 0;
                FieldInfo[] pArray = type.GetFields();// 得到T的成员变量信息
                T           entity = new T();
                foreach (FieldInfo p in pArray)
                {
                    id++;
                    string fieldInfo = p.FieldType.ToString();
                    numName = p.Name;
                    // 通过成员变量的信息选择读写的类型
                    switch (fieldInfo)
                    {
                    case "System.Int32":
                        p.SetValue(entity, reader.GetInt32(p.Name));
                        break;

                    case "System.Single":
                        p.SetValue(entity, reader.GetFloat(p.Name));
                        break;

                    case "System.Double":
                        p.SetValue(entity, reader.GetDouble(p.Name));
                        break;

                    case "System.Boolean":
                        p.SetValue(entity, reader.GetBoolean(p.Name));
                        break;

                    case "System.String":
                        p.SetValue(entity, reader.GetString(p.Name));
                        break;

                    case "UnityEngine.Vector2[]":
                        string typeName = reader.GetString(p.Name);
                        if (!string.IsNullOrEmpty(typeName))    // 安全校验
                        {
                            p.SetValue(entity, GetVector2s(typeName));
                        }
                        break;

                    case "UnityEngine.Vector3[]":
                        break;

                    case "UnityEngine.Color":
                        string colorName = reader.GetString(p.Name);
                        if (!string.IsNullOrEmpty(colorName))
                        {
                            p.SetValue(entity, GetColor(colorName));
                        }
                        break;

                    default:
                        break;
                    }
                    if (p.Name == dicId)
                    {
                        dicKey = (K)p.GetValue(entity);
                    }
                }
                returnDatas.Add(dicKey, entity);// 加入字典
            }
        }
        catch (System.Exception e)
        {
            Debug.Log("[表转类读写出错] " + e.Message);
            Debug.Log("第" + id + "个数据有错");
            Debug.Log(numName);
        }
        reader.Close();
        conn.Close();// 关闭数据库连接
        conn.Dispose();

        return(returnDatas);
    }