gpt4 book ai didi

sql - 无法通过 SQL 数据仓库上的 JDBC 获取生成的 key

转载 作者:行者123 更新时间:2023-12-03 21:54:42 24 4
gpt4 key购买 nike

我的 Azure SQL 数据仓库数据库中有一个这样的表:

CREATE TABLE t_identity (
id INTEGER IDENTITY (1, 1) NOT NULL,
val INTEGER
)
现在,使用 JDBC,我想插入一行并获取生成的标识值。这适用于 SQL Server 和大多数其他数据库:
try (Connection c = DriverManager.getConnection(url, properties);
Statement s = c.createStatement()) {

s.executeUpdate("insert into t_identity (val) values (1)",
Statement.RETURN_GENERATED_KEYS);
try (ResultSet rs = s.getGeneratedKeys()) {
while (rs.next())
System.out.println(rs.getObject(1));
}
}
但在 SQL 数据仓库上,它不起作用:
Exception in thread "main" com.microsoft.sqlserver.jdbc.SQLServerException: 'SCOPE_IDENTITY' is not a recognized built-in function name.
at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:264)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1585)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecuteStatement(SQLServerStatement.java:876)
at com.microsoft.sqlserver.jdbc.SQLServerStatement$StmtExecCmd.doExecute(SQLServerStatement.java:776)
at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:7385)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:2750)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:235)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:210)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeUpdate(SQLServerStatement.java:2060)
at SQLServer.main(SQLServer.java:65)
其他方法(例如 executeUpdate(String, String[]) )也不起作用,因为它们委托(delegate)给上述方法。
我了解 SQL 数据仓库不支持 SCOPE_IDENTITY() and similar functions ,这似乎是由 mssql-jdbc 驱动程序在幕后使用的:
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>6.5.2.jre8-preview</version>
</dependency>
但是有解决方法吗?
笔记:
  • 输出子句也不可用:https://docs.microsoft.com/en-us/sql/t-sql/queries/output-clause-transact-sql
  • I've also filed a bug on Github for mssql-jdbc
  • 最佳答案

    解决方法是添加到您的插入查询,然后选择 id。

    insert into t_identity
    (val)
    select 'my value'
    where not exists
    (
    select 1
    from t_identity
    where val = 'my value'
    )

    select id
    from t_dan_identity
    where val = 'my value'

    关于sql - 无法通过 SQL 数据仓库上的 JDBC 获取生成的 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50562317/

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