摘要:
转载地址:https://www.cnblogs.com/lhbshg/p/8711604.html 阅读全文
摘要:
数据库隔离级别:读未提交 Read Uncommitted,读已提交(sqlserver 默认级别)read committed,可重复读 Repeatable read,串行化 Serializable。 其中:读未提交:是读取数据时不申请任何锁,直接读取,可提升并发性能,但会脏读。 读已提交:是 阅读全文
摘要:
何为更新丢失数据问题:假设数据库中有一条数据,有两个事物A,B,同时对这条数据操作。事物A,B同时读到这条数据,事物A对这条数据进行修改并提交,然后事物B对这条数据修该改但晚于事物A提交。这种情况下事物B就会覆盖掉事物A的更新,事物A的更新就会丢失。这种情况有时会引起比较严重的问题。例如重复转账问题 阅读全文
摘要:
从数据库生成model <#@ template hostspecific="True" #><#@ assembly name="EnvDTE" #><#@ assembly name="System.Core.dll" #><#@ assembly name="System.Data" #><# 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.Common;using System.Data.SqlClient;using System.Da 阅读全文
摘要:
转载地址:https://blog.csdn.net/lphbtm/article/details/19397453 https://www.zhihu.com/question/297893662/answer/509391422 阅读全文
摘要:
转载地址:https://www.cnblogs.com/quark/archive/2012/03/20/2407487.html 由转载的这篇文章可以得出如下结论: 1. 函数调用时首先返回地址入栈。 2.函数体中声明的变量,在操作的时候入栈。 3.传入的参数,如果用到入栈,如果用不到就不入栈。 阅读全文
摘要:
https://blog.csdn.net/a308601801/article/details/88642985//数据丢失,数据重复原理 https://blog.csdn.net/yanshu2012/article/details/54894629?utm_medium=distribute 阅读全文
摘要:
转载地址:https://blog.csdn.net/hepei120/article/details/102960336 阅读全文