jeecg在controller中執行sql


1.引入
@Autowired
JdbcDao jdbcDao;
2.代碼
String sqlForLive = "select * from live where user_id='"+id+"' and id !='"+liveId+"'";


List<ApiLiveEntity> liveList = jdbcDao.find(sqlForLive,ApiLiveEntity.class,null);


String updateSql = "UPDATE live SET live_state=0 where user_id='"+id+"' and id !='"+liveId+"'";


jdbcDao.executeSql(updateSql);
————————————————
版權聲明:本文為CSDN博主「昊天卍上帝」的原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/qianyesoft001/java/article/details/77035724


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM