站保站

服务市场
  • 网站市场
  • 单机游戏
  • 平台大厅
  • 转让市场
  • 发卡市场
  • 广告市场
  • 下载市场
  • 收录市场
  • 本站平台
    平台客服
    微信Q群



    平台微博/weibo    平台微信/公众号    平台抖音/快手   
    曝光台    保障    地图   
    上传资源 快速赚钱
    站保站    登录      |  注册  |  

    只需一步,快速开始!

     找回密码   |   协议
    热门搜索: 网站开发 App报毒 挖矿源码 代办资质

    Caused by: java.sql.SQLException: Data truncated for column ‘birthday‘ at row 1

    • 时间:2020-10-27 18:23 编辑:科研好难啊 来源: 阅读:67
    • 扫一扫,手机访问
    摘要:

    项目场景:

    一个Java中的Date数据类型,我想将之存到数据库的时候存成一个1970年至今的毫秒数,取出来时转换成java的Date,即java的Date与数据库的varchar毫秒值之间转换。


    问题描述:

    测试转换时报错
    在这里插入图片描述

    package com.itheima.Handler;
    
    import org.apache.ibatis.type.BaseTypeHandler;
    import org.apache.ibatis.type.JdbcType;
    
    import java.sql.*;
    
    
    public class DataTypeHandler extends BaseTypeHandler<Date> {
        //将java类型转成数据库需要的类型
        public void setNonNullParameter(PreparedStatement ps, int i, Date date, JdbcType jdbcType) throws SQLException {
            long time=date.getTime();
            ps.setLong(i,time);
        }
        //将数据库中某些数据的类型转换成Java类型
        //string参数是数据库中要转换的字段名称
        //resultSet是查询出的结果集
        public Date getNullableResult(ResultSet rs, String columnName) throws SQLException {
            //获得结果集中需要的数据(long)转换成date类型并返回
            long aLong = rs.getLong(columnName);
            Date date=new Date(aLong);
            return date;
        }
    
        public Date getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
            long aLong = rs.getLong(columnIndex);
            Date date=new Date(aLong);
            return date;
        }
    
        public Date getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
            long aLong = cs.getLong(columnIndex);
            Date date=new Date(aLong);
            return date;
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    原因分析:

    Date自动引用的时java.sql.Date,而此时我们需要用java.util.Date
    在这里插入图片描述


    解决方案:

    import java.util.Date;
    在这里插入图片描述

    • 全部评论(0)
    • 最新

    信息加载中,请等待

    微信客服(速回)

    微信客服(慢回)



    企业微信客服二维码
    联系我们
    平台客服: 平台QQ客服

    平台电话:400电话迁移中!

    平台邮箱:28292383@qq.com

    工作时间:周一至周五:早10:00 晚:18:00

    营业执照     网站ICP备案:鲁ICP备20027607号-1     鲁公网安备:37068702000078号     增值电信业务经营许可证、在线数据与交易处理业务许可证:鲁B2-20200681      © 2016-2024 站保站  https://www.zhanbaozhan.com/ 版权所有!      平台规范:   关于我们   广告合作   隐私条款   免责声明   法律声明   服务条款   网站地图   平台工单!