第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

ssh存儲(chǔ)過(guò)程無(wú)法改變數(shù)據(jù)庫(kù)數(shù)據(jù)

ssh存儲(chǔ)過(guò)程無(wú)法改變數(shù)據(jù)庫(kù)數(shù)據(jù)

慕娘9325324 2018-08-24 10:09:29
使用ssh存儲(chǔ)過(guò)程實(shí)現(xiàn)購(gòu)物車(chē)添加和商品列表的數(shù)據(jù)減少,程序執(zhí)行成功但是數(shù)據(jù)庫(kù)數(shù)據(jù)沒(méi)變java調(diào)用public int add(int sid,int num,double total,int uid) {        try {            this.getSession().getNamedQuery("update").setParameter(0, sid).setParameter(1, num)             .setParameter(2, total).setParameter(3, uid);            return 1;         } catch (Exception e) {            // TODO: handle exception            e.printStackTrace();            return 0;         }     }調(diào)用mysql存儲(chǔ)過(guò)程代碼 <sql-query name="update" callable="true">         {call zcxg(?,?,?,?)}    </sql-query>mysql的存儲(chǔ)過(guò)程詳細(xì)代碼create procedure `zcxg`(in sid int,in num int,in total double,in uid int)beginupdate shop as s set s.`number`=(s.`number`-`num`) where s.`id`=`sid`;insert into cart(number,sid,total,uid) values(`num`,`sid`,`total`,`uid`);commit;end
查看完整描述

1 回答

?
慕斯王

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超2個(gè)贊

  this.getSession().getNamedQuery("update").setParameter(0, sid).setParameter(1, num)
            .setParameter(2, total).setParameter(3, uid);

換成

    String procdure = "{call cl(?,?,?,?)}";
            CallableStatement cs = this.getHibernateTemplate().getSessionFactory().getCurrentSession().connection().prepareCall(procdure);
            cs.setInt(1, sid);
            cs.setInt(2, num);
            cs.setDouble(3, total);
            cs.setInt(4, uid);
            cs.execute();


查看完整回答
反對(duì) 回復(fù) 2018-09-12
  • 1 回答
  • 0 關(guān)注
  • 814 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)