摘要: 数据库隔离级别解决什么问题 脏读:一个事务读到另一个事务未提交的数据。 不可重复读:一个事务在两个不同时间读到的记录不一致 幻读:一个事务两次读取的记录数不一样 不可重复读和幻读的区别是: 不可重复读是由于update改变了记录,幻读是insert或delete改变了某个范围的记录数 数据库隔离级别 阅读全文
posted @ 2022-07-28 21:42 shigp1 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_29860591/article/details/113726100 阅读全文
posted @ 2022-07-28 20:29 shigp1 阅读(5) 评论(0) 推荐(0) 编辑
摘要: String str1 = "hello"; String str2 = "hel" + new String("lo"); String str3 = "hel"; String str4 = "lo"; String str34 = str3 + str4; String str5 = "hel 阅读全文
posted @ 2022-07-28 20:21 shigp1 阅读(114) 评论(0) 推荐(0) 编辑