摘要:
1 DECLARE t_error INTEGER DEFAULT 0; 2 DECLARE CONTINUE HANDLER FOR SQLEXCEPTION SET t_error=1; 3 START TRANSACTION; 7 ... 阅读全文
摘要:
1 var customers = db.Customers.Where(c => c.name=='小明');2 foreach (var customer in customers)3 {4 customer.Address = "Guangzhou";5 }6 db.SubmitCha... 阅读全文
摘要:
boolean在MySQL里的类型为tinyint(1)很奇怪。 阅读全文