摘要:
public static void main(String[] args) { Integer a = 127; Integer b = 128; Integer c = new Integer(127); Integer d = new Integer(128); Integer e = new 阅读全文
posted @ 2020-07-31 16:48
Ricardo-ting
阅读(134)
评论(0)
推荐(0)
摘要:
事务: 事务(Transaction),一般是指要做的或所做的事情。在计算机术语中是指访问并可能更新数据库中各种数据项的一个程序执行单元(unit)。事务通常由高级数据库操纵语言或编程语言(如SQL,C++或Java)书写的用户程序的执行所引起,并用形如begin transaction和end t 阅读全文
posted @ 2020-07-31 08:57
Ricardo-ting
阅读(725)
评论(0)
推荐(0)