2020年6月9日

摘要: 数据库事务操作 #region 事务 /// <summary> /// 事务: 显示事务和隐式事务 /// 显示事务:手动操作的 /// 隐式事务:平常的一条SQL语句 /// </summary> /// <param name="sqlList">sql语句list</param> /// < 阅读全文
posted @ 2020-06-09 21:07 g_ices 阅读(157) 评论(0) 推荐(0) 编辑
 
摘要: SQL数据库增删改查方法封装 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; 阅读全文
posted @ 2020-06-09 17:29 g_ices 阅读(475) 评论(0) 推荐(0) 编辑
 
摘要: 查询单条数据 //数据库语句 select ClassId, ClassName from StudentClass where ClassId=1 //C# 数据库查询多条数据 //定义SQL语句 string sql = "select ClassId, ClassName from Stude 阅读全文
posted @ 2020-06-09 16:17 g_ices 阅读(156) 评论(0) 推荐(0) 编辑