<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 11,  comments - 28,  trackbacks - 0
    今天在繼續(xù)研究JShopStore時候,在查看product的明細時即
    執(zhí)行action
    ????<action?path="/shop/viewItem"?type="org.apache.struts.beanaction.BeanAction"
    ????????????name
    ="catalogBean"?scope="session"
    ????????????validate
    ="false"?input="/catalog/Product.jsp">
    ??????
    <forward?name="success"?path="/catalog/Item.jsp"/>
    ????
    </action>
    報NestedSqlException錯誤,錯誤的核心部分如下:
    Caused?by:?com.ibatis.dao.client.DaoException:?Failed?to?execute?queryForObject?-?id?[getItem],?parameterObject?[EST-18].??Cause:?com.ibatis.common.jdbc.exception.NestedSQLException:???
    ---?The?error?occurred?in?com/ibatis/jpetstore/persistence/sqlmapdao/sql/Item.xml.??
    ---?The?error?occurred?while?applying?a?parameter?map.??
    ---?Check?the?getItem-InlineParameterMap.??
    ---?Check?the?statement?(query?failed).??
    ---?Cause:?java.sql.SQLException:?[Microsoft][SQLServer?2000?Driver?for?JDBC][SQLServer]???'itemid'?????
    Caused?by:?java.sql.SQLException:?[Microsoft][SQLServer?
    2000?Driver?for?JDBC][SQLServer]???'itemid'?????
    Caused?by:?com.ibatis.common.jdbc.exception.NestedSQLException:???
    ---?The?error?occurred?in?com/ibatis/jpetstore/persistence/sqlmapdao/sql/Item.xml.??
    ---?The?error?occurred?while?applying?a?parameter?map.??
    ---?Check?the?getItem-InlineParameterMap.??
    ---?Check?the?statement?(query?failed).??
    ---?Cause:?java.sql.SQLException:?[Microsoft][SQLServer?2000?Driver?for?JDBC][SQLServer]???'itemid'?????
    我跟蹤、跟蹤,跟蹤到ItemSqlMapDao
    ??public?Item?getItem(String?itemId)?{
    ????Integer?i?
    =?(Integer)?queryForObject("getInventoryQuantity",?itemId);
    ????Item?item?
    =?(Item)?queryForObject("getItem",?itemId);
    ????item.setQuantity(i.intValue());
    ????
    return?item;
    ??}
    找到錯誤語句
    Item item = (Item) queryForObject("getItem", itemId);
    繼續(xù)跟蹤到操縱的sql_map文件Item.xml
    <select?id="getItem"?resultClass="item"?parameterClass="string"?cacheModel="quantityCache">
    ????select
    ??????ITEMID,
    ??????LISTPRICE,
    ??????UNITCOST,
    ??????SUPPLIER?AS?supplierId,
    ??????I.PRODUCTID?AS?"product.productId",
    ??????NAME?AS?"product.name",
    ??????DESCN?AS?"product.description",
    ??????CATEGORY?AS?"product.categoryId",
    ??????STATUS,
    ??????ATTR1?AS?attribute1,
    ??????ATTR2?AS?attribute2,
    ??????ATTR3?AS?attribute3,
    ??????ATTR4?AS?attribute4,
    ??????ATTR5?AS?attribute5,
    ??????QTY?AS?quantity
    ????from?ITEM?I,?INVENTORY?V,?PRODUCT?P
    ????where?P.PRODUCTID?=?I.PRODUCTID
    ??????and?I.ITEMID?=?V.ITEMID
    ??????and?I.ITEMID?=?#value#
    ??
    </select>
    問題就出現(xiàn)在這,Item類中包含了Product類,出現(xiàn)NestedSqlException錯誤。
    查閱了ibatis幫助,此處sql_map的嵌套類寫法是正確的。我又將這個sql語句拷貝到MsSqlServer中執(zhí)行,結(jié)果也是正確的。陷入困惑。
    在網(wǎng)上找資料,發(fā)現(xiàn)了一個英文網(wǎng)站中指明了
    ---?Cause:?java.sql.SQLException:?[DataDirect][SQLServer?JDBC?Driver][SQLServer]Ambiguous?column?name?'itemid'.?
    哈哈,問題就此找到了。即itemid列指待不清,應(yīng)該將ITEMID替換成I.ITEMID AS ITEMID。而之所以我直接將語句拷貝到MsSqlServer執(zhí)行正確,是因為MSSqlServer自動做了處理,加上了表的別名。而這個Sql語句本身是存在問題的。
    所以item.xml替換后的代碼為
    ??<select?id="getItem"?resultClass="item"?parameterClass="string"?cacheModel="quantityCache">
    ????select
    ??????I.ITEMID?AS?ITEMID,
    ??????LISTPRICE,
    ??????UNITCOST,
    ??????SUPPLIER?AS?supplierId,
    ??????I.PRODUCTID?AS?"product.productId",
    ??????NAME?AS?"product.name",
    ??????DESCN?AS?"product.description",
    ??????CATEGORY?AS?"product.categoryId",
    ??????STATUS,
    ??????ATTR1?AS?attribute1,
    ??????ATTR2?AS?attribute2,
    ??????ATTR3?AS?attribute3,
    ??????ATTR4?AS?attribute4,
    ??????ATTR5?AS?attribute5,
    ??????QTY?AS?quantity
    ????from?ITEM?I,?INVENTORY?V,?PRODUCT?P
    ????where?P.PRODUCTID?=?I.PRODUCTID
    ??????and?I.ITEMID?=?V.ITEMID
    ??????and?I.ITEMID?=?#value#
    ??
    </select>
    問題解決,OK!誒,亂碼也耽誤了一些時間,否則早就解決了,看來亂碼誤事啊!
    posted on 2007-01-16 13:38 滌生 閱讀(3364) 評論(6)  編輯  收藏


    FeedBack:
    # re: ibatis JshopStore5的sqlmap的xml錯誤,NestedSQLException錯誤[未登錄]
    2007-01-16 17:06 | junmy
    posted on 2006-05-22 00:42
    http://www.tkk7.com/wujun/archive/2006/05/22/47392.html
    早就發(fā)現(xiàn)了~
      回復(fù)  更多評論
      
    # re: ibatis JshopStore5的sqlmap的xml錯誤,NestedSQLException錯誤
    2007-01-16 20:21 | 滌生
    @junmy
    今天我還在blogjava上找了一圈,沒找到對應(yīng)的。要是早看到你的大作,可以省我半個上午的時間  回復(fù)  更多評論
      
    # re: ibatis JshopStore5的sqlmap的xml錯誤,NestedSQLException錯誤[未登錄]
    2007-01-18 19:44 | BeanSoft
    強烈建議 dudu 加入全文索引... 沒搜索這么多 blog 也是很浪費啊...  回復(fù)  更多評論
      
    # re: ibatis JshopStore5的sqlmap的xml錯誤,NestedSQLException錯誤
    2008-10-20 20:40 | Guest
    我也是這樣改的,不過仍然還是錯誤。。。搞不明白呢。  回復(fù)  更多評論
      
    # re: ibatis JshopStore5的sqlmap的xml錯誤,NestedSQLException錯誤
    2010-02-06 13:09 | ossoftwaare
    好內(nèi)容,以前研究過,不過好久了, 最近寫了幾句,也發(fā)現(xiàn)了這個問題  回復(fù)  更多評論
      
    # re: ibatis JshopStore5的sqlmap的xml錯誤,NestedSQLException錯誤
    2010-12-10 14:48 | LingShame
    @junmy
    你走得路,先人已經(jīng)走過N多次了.
    你再走來,不覺得可恥嗎?  回復(fù)  更多評論
      

    只有注冊用戶登錄后才能發(fā)表評論。


    網(wǎng)站導(dǎo)航:
     
    <2007年1月>
    31123456
    78910111213
    14151617181920
    21222324252627
    28293031123
    45678910

    常用鏈接

    留言簿(5)

    隨筆檔案

    UML

    搜索

    •  

    最新評論

    閱讀排行榜

    評論排行榜

    主站蜘蛛池模板: 一级毛片在线观看免费| 成人免费淫片在线费观看| 亚洲精品电影在线| 成人黄页网站免费观看大全| 免费人成网上在线观看| 亚洲国产精品久久66| 在线播放免费播放av片| 爽爽爽爽爽爽爽成人免费观看 | 91亚洲国产成人久久精品网址| 成人免费无码大片A毛片抽搐色欲| 羞羞视频免费网站含羞草| 亚洲av无码国产精品夜色午夜 | 久久久久亚洲AV成人片| 国产大片91精品免费看3| 一区二区三区无码视频免费福利| 久久精品国产亚洲αv忘忧草| 亚洲午夜精品久久久久久浪潮| 蜜桃AV无码免费看永久| 特级毛片在线大全免费播放| 亚洲性猛交xx乱| 国产成人高清亚洲| 嫩草视频在线免费观看| 精品视频在线免费观看| 亚洲av最新在线观看网址| 亚洲人成网www| 亚洲AV中文无码乱人伦在线视色| 蜜臀98精品国产免费观看| jizz在线免费播放| 亚洲av无码成人精品区一本二本 | 色播在线永久免费视频| 十八禁无码免费网站| 免费国产va在线观看| 亚洲免费电影网站| 香蕉视频在线观看亚洲| 国产成人毛片亚洲精品| 成年人免费视频观看| 2021精品国产品免费观看| 青青久久精品国产免费看| 亚洲精品乱码久久久久久V| 亚洲美女视频一区| 久久亚洲一区二区|