PreparedStatement怎么插入 datetime类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PreparedStatement怎么插入 datetime类型相关的知识,希望对你有一定的参考价值。
SQL SERVER 有datetime 类型 PS 的方法只有setDate
参考技术A new java.sql.Date(new java.util.Date().getTime()); 参考技术B SQL SERVER datetime 类型 对应java Timestamp类型本回答被提问者采纳 参考技术C settimestamp方法是对应的 参考技术D setTimestamp()这个是带时间的。。。。。。
使用 PreparedStatement 插入并为插入的行返回一列的值
【中文标题】使用 PreparedStatement 插入并为插入的行返回一列的值【英文标题】:Insert using PreparedStatement and return values of one column for inserted rows 【发布时间】:2020-12-08 19:56:54 【问题描述】:我正在使用PreparedStatement
批量插入 MySQL 数据库。然后我需要查询为成功插入的行返回一个特定列(名称)的值。我已经试过了:
preparedStatement = connection.prepareStatement("INSERT INTO x (id,name) VALUES (?,?)", new String[]"name");
但是,我还没有找到任何方法可以在preparedStatement 运行后获取它的返回值。我试过preparedStatemet.getGeneratedKeys();
,但它只返回主键值。
【问题讨论】:
***.com/questions/25745094/… @SusanMustafa 谢谢。但它不是在谈论executeBatch
,它指的是executeUpdate
executeBatch
的 int[]
结果(带有 0 和 1)可用于从已使用名称的数组或列表中进行选择。
@JoopEggen 似乎是最好的解决方案。谢谢!
【参考方案1】:
使用生成的键查找插入的行。在该查询中返回您想要的任何列。
留在单个事务中以获得不变的结果。
【讨论】:
谢谢,但它至少需要一个额外的查询!以上是关于PreparedStatement怎么插入 datetime类型的主要内容,如果未能解决你的问题,请参考以下文章
使用 PreparedStatement 插入并为插入的行返回一列的值
Java、PreparedStatement、TransactSQL (MS SQL)、最后插入 ID
PreparedStatement 查询将数据插入表中的特定列
Java PreparedStatement 检索最后插入的 ID [重复]