gpt4 book ai didi

java - 数据截断: Data too long for column 'sql_stmt' at row 1

转载 作者:行者123 更新时间:2023-11-29 18:26:31 29 4
gpt4 key购买 nike

这是我的 xml 代码

<insert id="insertAnnualKiln" parameterType="list">
insert into prm_annual_kiln (id,parent_id,runtime_kiln,runtimerate_kiln,shutdowntime_kiln,
shutdowndesc_kiln,heat_clinker,elect_clinker,equip_code,prod_clinker_type) VALUES
<foreach collection="list" item="item" separator=",">
(#{item.id},#{item.parentId},#{item.runtimeKiln},#{item.runtimerateKiln},
#{item.shutdowntimeKiln},#{item.shutdowndescKiln},#{item.heatClinker},#{item.electClinker}
,#{item.equipCode},#{item.prodClinkerType})
</foreach>
</insert>

列表有36个元素,当我将列表剪切到10个元素时成功,这是错误。

### SQL: insert into prm_annual_kiln (id,parent_id,runtime_kiln,runtimerate_kiln,shutdowntime_kiln,   shutdowndesc_kiln,heat_clinker,elect_clinker,equip_code,prod_clinker_type) VALUES         (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)    ,     (?,?,?,?,    ?,?,?,?    ,?,?)
### Cause: com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'sql_stmt' at row 1
; SQL []; Data truncation: Data too long for column 'sql_stmt' at row 1; nested exception is com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'sql_stmt' at row 1

最佳答案

更改表中的列 sql_stmt 定义以设置更长的长度。如:

ALTER TABLE <table_name> MODIFY sql_stmt VARCHAR(<a longer length>);

关于java - 数据截断: Data too long for column 'sql_stmt' at row 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46147997/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com