热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

MySQL数据库实例化参数优化与实例查询详解

本文详细探讨了MySQL数据库实例化参数的优化方法及其在实例查询中的应用。通过具体的源代码示例,介绍了如何高效地配置和查询MySQL实例,为开发者提供了有价值的参考和实践指导。

本篇文章给大家带来的内容是关于MySQL如何通过实例化对象参数查询数据 ?(源代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

public static string QueryByEntity(T t) where T : new()

{ string resultstr = string.Empty;

MySqlDataReader reader = null; try

{

Type type = typeof(T);

PropertyInfo[] properties = type.GetProperties(); string select = string.Format("Select * from {0} {1}", type.Name, "{0}"); string where = string.Empty; foreach (PropertyInfo property in properties)

{ var value = t.GetPropertyValue(property); if (value != null && !value.Equals(property.GetDefaultValue()))

{ if (string.IsNullOrEmpty(where))

{ where = string.Format(" where {0}='{1}' ", property.Name, value);

} else

{ where = string.Format(" {0} and {1} = '{2}' ", where, property.Name, value);

}

}

} select = string.Format(select, where);

MySqlConnection connection = OpenConnection(); if (connection == null) return resultstr;

MySqlCommand _sqlCom = new MySqlCommand(select, connection);

reader = _sqlCom.ExecuteReader();

List tList = new List(); while (reader.Read())

{

T t1 = new T(); foreach (PropertyInfo property in properties)

{ if (!string.IsNullOrEmpty(reader[property.Name].ToString()))

{

property.SetMethod.Invoke(t1, new object[] { reader[property.Name] });

}

}

tList.Add(t1);

}

resultstr = JsonConvert.SerializeObject(tList);

} catch (Exception ex)

{

Logging.Error(string.Format("查询数据库失败,{0}", ex.Message));

} finally

{ if (reader != null)

{

reader.Close();

reader.Dispose();

}

} return resultstr;

}internal static class ObjectExtend

{ public static object GetPropertyValue(this object obj, PropertyInfo property)

{

Type type = typeof(T);

PropertyInfo propertyInfo = type.GetProperty(property.Name); if (propertyInfo != null)

{ return propertyInfo.GetMethod.Invoke(obj, null);

} return null;

} public static object GetDefaultValue(this PropertyInfo property)

{ return property.PropertyType.IsValueType ? Activator.CreateInstance(property.PropertyType) : null;

}

}

通过实例化参数,对属性赋值,将对象作为参数传入,反射获取对象名称,列名,列值。要求对象名与表名一致,属性与列名一致,感谢大家对我们的支持。

本文标题: MySQL通过实例化对象参数查询实例讲解

本文地址: http://www.cppcns.com/shujuku/mysql/242020.html



推荐阅读
author-avatar
血红中国心_686
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有