MYSQL连接数据库
web.config
<connectionStrings>
<add name="MysqlDB" connectionString="Data Source=.;Initial Catalog=dbname;Persist Security Info=True;User ID=username;Password=password;" providerName="MySql.Data.MySqlClient" />
</connectionStrings>
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
using MySql.Data.MySqlClient;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Service.Common
{
public class DbMyHelp
{
//连接字符串拼装
//mycon = new MySqlConnection("Host=127.0.0.1;UserName=root;Password=root;Database=score;Port=3306");
//private static string config = System.Configuration.ConfigurationManager.AppSettings["MysqlDB"].ToString();
private string config = string.Empty;
/// <summary>
/// 数据库连接串
/// </summary>
public string ConnectionString
{
set { config = value; }
}
/// <summary>
/// 构造
/// </summary>
public DbMyHelp(string connName)
{
this.config = System.Configuration.ConfigurationManager.ConnectionStrings[connName].ToString();
}
/// <summary>
/// 查询返回List<T>
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="sql"></param>
/// <returns></returns>
public List<T> QueryList<T>(string sql)
{
///////////////////获取MYSQ看数据返回值////////////////////////////
MySqlConnection mycon = new MySqlConnection(config);
//连接
mycon.Open();
//查询命令赋值,可以写多条语句,多条语句之间用;号隔开
MySqlCommand mycom = new MySqlCommand(sql, mycon);
MySqlDataReader myrec = mycom.ExecuteReader();
List<T> list = new List<T>();
//一次次读,读不到就结束
while (myrec.Read())
{
T obj = ExecDataReader<T>(myrec);
list.Add(obj); //string myInfo = myInfo + myrec["Name"] + " " + myrec["ID"];
}
//////关闭相关对象
myrec.Close();
mycom.Dispose();
mycon.Close();
return list;
}
/// <summary>
/// 查询返回object
/// </summary>
/// <param name="sql"></param>
/// <returns></returns>
public object QueryObject(string sql)
{
///////////////////获取MYSQ看数据返回值////////////////////////////
MySqlConnection mycon = new MySqlConnection(config);
//连接
mycon.Open();
//查询命令赋值,可以写多条语句,多条语句之间用;号隔开
MySqlCommand mycom = new MySqlCommand(sql, mycon);
object obj = mycom.ExecuteScalar();
//////关闭相关对象
mycom.Dispose();
mycon.Close();
return obj;
}
/// <summary>
/// 查询返回datatable
/// </summary>
/// <param name="sql"></param>
/// <returns></returns>
public DataTable QueryTable(string sql)
{
MySqlConnection mycon = new MySqlConnection(config);
mycon.Open();
MySqlCommand mycom = new MySqlCommand(sql, mycon);
DataSet dataset = new DataSet();//dataset放执行后的数据集合
MySqlDataAdapter adapter = new MySqlDataAdapter(mycom);
adapter.Fill(dataset);
mycom.Dispose();
mycon.Close();
return dataset.Tables[0];
}
/// <summary>
/// 操作增删改
/// </summary>
/// <param name="sql"></param>
/// <returns></returns>
public int ExecutSql(string sql)
{
int result = 0;
MySqlConnection mycon = new MySqlConnection(config);
mycon.Open();
MySqlCommand mycom = new MySqlCommand(sql, mycon);
result = mycom.ExecuteNonQuery();
mycom.Dispose();
mycon.Close();
mycon.Dispose();
return result;
}
/// <summary>
/// 事务操作增删改
/// </summary>
/// <param name="sql"></param>
/// <returns></returns>
public int ExcuteTran(string sql)
{
MySqlConnection mycon = new MySqlConnection(config);
MySqlCommand mycom = null;
MySqlTransaction trans = null;
int result = 0;
try
{
mycon.Open();
mycom = mycon.CreateCommand();
mycom.CommandText = sql;
//创建事务
trans = mycon.BeginTransaction();
result = mycom.ExecuteNonQuery();
//事务提交
trans.Commit();
}
catch
{
//事务回滚
trans.Rollback();
}
finally
{
mycom.Dispose();
mycon.Close();
mycon.Dispose();
}
return result;
}
/// <summary>
/// IDataReader、MySqlDataReader 转T实体
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="reader"></param>
/// <returns></returns>
private T ExecDataReader<T>(IDataReader reader)
{
T obj = default(T);
try
{
Type type = typeof(T);
obj = (T)Activator.CreateInstance(type);//从当前程序集里面通过反射的方式创建指定类型的对象
PropertyInfo[] propertyInfos = type.GetProperties();//获取指定类型里面的所有属性
foreach (PropertyInfo propertyInfo in propertyInfos)
{
for (int i = 0; i < reader.FieldCount; i++)
{
string fieldName = reader.GetName(i);
if (fieldName.ToLower() == propertyInfo.Name.ToLower())
{
//object val = reader[propertyInfo.Name];//读取表中某一条记录里面的某一列
object val = reader[fieldName];//读取表中某一条记录里面的某一列
if (val != null && val != DBNull.Value)
{
propertyInfo.SetValue(obj, val);
}
break;
}
}
}
}
catch (Exception)
{
throw;
}
return obj;
}
}
public static class DataHelper
{
/// <summary>
/// DataTable 转List<T>实体
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="dt"></param>
/// <returns></returns>
public static List<T> ToEntity<T>(this DataTable dt) where T : new()
{
List<T> list = new List<T>();
Type info = typeof(T);
var props = info.GetProperties();
foreach (DataRow dr in dt.Rows)
{
T entity = new T();
foreach (var pro in props)
{
var propInfo = info.GetProperty(pro.Name);
if (dt.Columns.Contains(pro.Name))
{
propInfo.SetValue(entity, Convert.ChangeType(dr[pro.Name], propInfo.PropertyType), null);
}
}
list.Add(entity);
}
return list;
}
}
}
MYSQL连接数据库的更多相关文章
- navicat for mysql连接数据库报错1251
使用Navicat for mysql 连接数据库,报如下错误 原因:数据库安装的是8.0版本,新的mysql采用了新的加密方式,导致连接失败 解决办法:数据库执行如下命令 改密码加密方式:用管理员身 ...
- Database学习 - mysql 连接数据库 库操作
连接数据库 语法格式: mysql -h 服务器IP -P 端口号 -u用户名 -p密码 --prompt 命令提示符 --delimiter 指定分隔符 示例: mysql -h 127.0.0.1 ...
- MySql连接数据库和操作(java)
package org.wxd.weixin.util; import java.sql.Connection;import java.sql.DriverManager;import java.sq ...
- MYSQL 连接数据库命令收藏
一.MySQL 连接本地数据库,用户名为“root”,密码“123”(注意:“-p”和“123” 之间不能有空格) C:\>mysql -h localhost -u root -p123 二. ...
- mysql连接数据库p的大小写
命令:mysql -uroot -p -hlocalhost -P3306 -h 用来指定远程主机的IP -P (大写) 用来指定远程主机MYAQL的绑定端口
- MySQL 连接数据库
一.MySQL 连接本地数据库,用户名为“root”,密码“123”(注意:“-p”和“123” 之间不能有空格),缺点:密码显示在显示器上,容易泄露. C:\>mysql -h localho ...
- PHP MySQL 连接数据库 之 Connect
连接到一个 MySQL 数据库 在您能够访问并处理数据库中的数据之前,您必须创建到达数据库的连接. 在 PHP 中,这个任务通过 mysql_connect() 函数完成. 语法 mysql_conn ...
- MySQL连接数据库报时区错误:java.sql.SQLException: The server time zone value
连接MySQL数据库时报以下时区错误信息: java.sql.SQLException: The server time zone value '�й���ʱ��' is unrecognized ...
- mysql连接数据库存报下面错误:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
输入 mysql -u root 登录 mysql 的时候出现以下错误: ERROR 2002 (HY000): Can't connect to local MySQL server through ...
随机推荐
- 【原】 Spark中Task的提交源码解读
版权声明:本文为原创文章,未经允许不得转载. 复习内容: Spark中Stage的提交 http://www.cnblogs.com/yourarebest/p/5356769.html Spark中 ...
- HDOJ-ACM1012(JAVA)
这道题很简单,主要是弄懂题意和注意输出: 输出的完整结果如下: n e - ----------- 0 1 1 2 2 2.5 3 2.666666667 4 2.708333333 5 2.7166 ...
- HUD-4602 Partition 排列
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4602 把n等效为排成一列的n个点,然后就是取出其中连续的k个点.分两种情况,一种是不包含两端,2^( ...
- 注册表-恶意首页追踪之旅(IE不能改主页)
恶意首页追踪之旅(先说下,360无法修复这个恶意首页) 话说,今天下了个扫站的工具,结果一不小心中了恶意广告! 中招后不停的乱下东西安装,360不停的在那弹出提示! 无语了,一个个卸载,把C:\win ...
- windows下svn+apache搭建svn服务器
使用软件: apache_2.0.55-win32-x86-no_ssl.msi Setup-Subversion-1.5.3.msi TortoiseSVN-1.5.10.16879-win32-s ...
- fedora21安装xmind7
老版本的xmind安装方法,在最后的阶段无法成功注册到系统中,desktop无法自定义完成.参考:http://www.cnblogs.com/cupcoffee/p/3560626.html 直到从 ...
- C++库研究笔记——生成一组随机数
当试图用 srand(time(0)) rand() 生成一组随机数时发现,生成的数字很多都是「一样」的 经过测试:srand(seed); rand() 生成随机数,当seed一样时,生成的随机数相 ...
- Spring.NET学习笔记
http://www.cnblogs.com/GoodHelper/archive/2009/11/20/SpringNet_Index.html
- WPF WebBrowser
XAML <Window x:Class="WpfApplication5.Window1" xmlns="http://schemas.microso ...
- linux ssh 中在window 传文件 下载文件 工具
centos 安装工具 yum install lrzsz