gpt4 book ai didi

java - 将整数值保存到数据库中

转载 作者:行者123 更新时间:2023-12-01 15:20:30 25 4
gpt4 key购买 nike

如何将 Integer 类型(不是 int)保存到数据库中?

最佳答案

使用普通 JDBC,我会使用以下内容:

 Integer myInteger = ...;
PreparedStatement ps = ...;
if (myInteger == null) {
ps.setNull(1, Types.INTEGER);
} else {
ps.setInt(1, myInteger); // will be autounboxed
}

关于java - 将整数值保存到数据库中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10992152/

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