使用 PreparedStatement 插入并为插入的行返回一列的值
Posted
技术标签:
【中文标题】使用 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 插入并为插入的行返回一列的值的主要内容,如果未能解决你的问题,请参考以下文章
Java、PreparedStatement、TransactSQL (MS SQL)、最后插入 ID
Java PreparedStatement 检索最后插入的 ID [重复]
使用 PreparedStatement 将日期插入 MySQL 数据库