当前位置:
首页 > temp > 简明python教程 >
-
Dapper基本用法--MySql
NuGet:
- Dapper 2.0.35
- MySql.Data
- System.Data
实体(Entity)
1 public class student 2 { 3 public int Id { get; set; } 4 public string RealName { get; set; } 5 public DateTime EnrollmenDate { get; set; } 6 }
配置文件数据库连接
<connectionStrings> <add name="mysqlConn" connectionString="server=127.0.0.1;database=数据库;User ID=root;password=密码"/> </connectionStrings>
MySql连接字符串
1 private static string connStr = string.Empty; 2 public MySqlOperation() 3 { 4 connStr = System.Configuration.ConfigurationManager.ConnectionStrings["mysqlConn"].ConnectionString; 5 }
查询语句
1 /// <summary> 2 /// 查询所有 3 /// </summary> 4 /// <returns>lists</returns> 5 public List<student> Query() 6 { 7 if (string.IsNullOrEmpty(connStr)) 8 { 9 return new List<student>(); ; 10 } 11 try 12 { 13 using (IDbConnection db = new MySqlConnection(connStr)) 14 { 15 db.Open();//打开数据库 16 string mysqlStr = "select * from student"; 17 List<student> lists = db.Query<student>(mysqlStr).ToList(); 18 db.Close();//关闭数据库 19 return lists; 20 } 21 } 22 catch (Exception) 23 { 24 return new List<student>(); 25 } 26 } 27 /// <summary> 28 /// 根据Id查询 29 /// </summary> 30 /// <param name="id"></param> 31 /// <returns>lists</returns> 32 public List<student> Query(string id) 33 { 34 if (string.IsNullOrEmpty(connStr)) 35 { 36 return new List<student>(); 37 } 38 try 39 { 40 using (IDbConnection db = new MySqlConnection(connStr)) 41 { 42 db.Open();//打开数据库 43 string mysqlStr = "select * from student where Id=@id"; 44 List<student> lists = db.Query<student>(mysqlStr, new { Id = id }).ToList(); 45 db.Close();//关闭数据库 46 return lists; 47 } 48 } 49 catch (Exception) 50 { 51 return new List<student>(); 52 } 53 }
插入语句
1 /// <summary> 2 /// 插入数据 3 /// </summary> 4 /// <param name="student">student</param> 5 /// <returns>-1:连接字符串为空,-2:新增失败</returns> 6 public int Insert(student student) 7 { 8 if (string.IsNullOrEmpty(connStr)) 9 { 10 return -1; 11 } 12 try 13 { 14 using (IDbConnection db = new MySqlConnection(connStr)) 15 { 16 db.Open();//打开数据库 17 string mysqlStr = "insert into student(Id,RealName,EnrollmenDate) values(@Id,@RealName,@EnrollmenDate)"; 18 int list = db.Execute(mysqlStr, student); 19 db.Close();//关闭数据库 20 return list; 21 } 22 } 23 catch (Exception) 24 { 25 return -2; 26 } 27 }
删除数据
1 /// <summary> 2 /// 删除数据 3 /// </summary> 4 /// <param name="id"></param> 5 /// <returns></returns> 6 public int Delect(string id) 7 { 8 if (string.IsNullOrEmpty(connStr)) 9 { 10 return -1; 11 } 12 try 13 { 14 using (IDbConnection db = new MySqlConnection(connStr)) 15 { 16 db.Open();//打开数据库 17 string mysqlStr = "delete from student where Id=@id"; 18 int list = db.Execute(mysqlStr, new { Id = id }); 19 db.Close();//关闭数据库 20 return list; 21 } 22 } 23 catch (Exception) 24 { 25 return -2; 26 } 27 }
更新数据
1 /// <summary> 2 /// 更新信息 3 /// </summary> 4 /// <param name="student"></param> 5 /// <returns>-1:连接字符串为空,-2:更新失败</returns> 6 public int Update(student student) 7 { 8 if (string.IsNullOrEmpty(connStr)) 9 { 10 return -1; 11 } 12 try 13 { 14 using (IDbConnection db = new MySqlConnection(connStr)) 15 { 16 db.Open();//打开数据库 17 string mysqlStr = "update student set RealName=@RealName where Id=@Id"; 18 int list = db.Execute(mysqlStr, student); 19 db.Close();//关闭数据库 20 return list; 21 } 22 } 23 catch (Exception) 24 { 25 return -2; 26 } 27 }
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数