2023-05-23 16:27:29.165 DEBUG 13092 --- [nio-9000-exec-9] c.m.dishes.dao.DishesDao.updateDishes : ==> Preparing: update dishes SET name=?, series=?, spicy=?, price=?, foodstuff=?, img=? where id = ? 2023-05-23 16:27:29.165 DEBUG 13092 --- [nio-9000-exec-9] c.m.dishes.dao.DishesDao.updateDishes : ==> Parameters: 九转大肠(String), 1(Integer), null, 288.0(Float), 大肠(String), 95cf733c-480d-4fe4-8f3a-e2e70d156454.jpg(String), 0(Integer) 2023-05-23 16:27:29.166 DEBUG 13092 --- [nio-9000-exec-9] c.m.dishes.dao.DishesDao.updateDishes : <== Updates: 0
时间: 2023-12-06 09:41:17 浏览: 75
从NIO到Netty,编程实战出租车905协议-08172347.pdf
5星 · 资源好评率100%
这是一段数据库操作的代码,使用了 MyBatis 进行数据访问。它的功能是更新 dishes 表中的一条记录,将该记录的 name、series、spicy、price、foodstuff、img 字段更新为指定的值,其中 id 字段为指定的值。从这段代码来看,执行的 SQL 语句是 update dishes SET name=?, series=?, spicy=?, price=?, foodstuff=?, img=? where id = ?,其中 ? 为占位符,具体的值会在执行语句前由程序动态传入。执行结果表明没有更新任何记录,可能是由于传入的 id 值不存在或者该记录已经存在于数据库中且未发生任何变化。
阅读全文