当前位置: 代码迷 >> J2EE >> itbatis保存数据出错: Unhandled Exception thrown: class org.springframework.jdbc.Uncate,该怎么解决
  详细解决方案

itbatis保存数据出错: Unhandled Exception thrown: class org.springframework.jdbc.Uncate,该怎么解决

热度:338   发布时间:2016-04-22 02:40:53.0
itbatis保存数据出错: Unhandled Exception thrown: class org.springframework.jdbc.Uncate
Unhandled Exception thrown: class org.springframework.jdbc.UncategorizedSQLException
这个是不是配置文件的原因啊?
ibatis中配置文件:
XML code
<!--添加supplies_type-->    <insert id="insert_office_supplies_amount_addOStype" parameterClass="java.util.HashMap">        insert into office_supplies_amount(supplies_name,supplies_remark)         values(                #supplies_name:varchar#,                #supplies_remark:varchar#                )    </insert>


------解决方案--------------------
<insert id="insert_office_supplies_amount_addOStype" parameterClass="java.util.HashMap">
insert into office_supplies_amount(supplies_name,supplies_remark) 
values(
#supplies_name#,
#supplies_remark#
)
</insert>
试试
------解决方案--------------------
你的这个表中是否有supplies_name,supplies_remark这两个字段
另外按照楼上的改下试试
  相关解决方案