public String getKey() {
Connection con = null;
Statement stmt = null;
String generatedKey = null;
try {
con = dataSrc.getConnection();
stmt = con.createStatement();
// ask to return generated key
int affectedRows = stmt.executeUpdate("Insert into CountTab(t) value('0')",
Statement.RETURN_GENERATED_KEYS);
if (affectedRows == 0) {
throw new SQLException(
"Creating row failed, no rows affected.");
}
try (ResultSet generatedKeys = stmt.getGeneratedKeys()) {
ResultSetMetaData rsmd = generatedKeys.getMetaData();
int columnCount = rsmd.getColumnCount();
if (Log4j.log.isEnabledFor(Level.INFO)) {
Log4j.log.info("count: " + columnCount);
}
if (generatedKeys.next()) {
generatedKey = generatedKeys.getString(1);
if (Log4j.log.isEnabledFor(Level.INFO)) {
Log4j.log.info("key: " + generatedKey);
}
} else {
throw new SQLException(
"Creating row failed, no ID obtained.");
}
}
} catch (SQLException se) {
// Handle any SQL errors
throw new RuntimeException("A database error occured. "
+ se.getMessage());
} finally {
// Clean up JDBC resources
if (stmt != null) {
try {
stmt.close();
} catch (SQLException se) {
se.printStackTrace(System.err);
}
}
if (con != null) {
try {
con.close();
} catch (Exception e) {
e.printStackTrace(System.err);
}
}
}
return generatedKey;
}
CountTab{---this is my table(designed by other)
id char(10) NOT NULL, ----Auto increament from 0000000001
t char(1) NOT NULL, ----just for insert to get the id
PRIMARY KEY(id)
};
我正在尝试使用java 1.7.0获取从MS SQL DB生成的唯一ID,上面的代码就是我用来执行此操作的代码;我也从MSDN获得了sqljdbc_4.1.5605.100,并将jar添加到我的程序的类路径中。
我的问题:我从getKey()得到的值是NULL。我不确定为什么会发生这种情况,因为这个函数在每次运行时都会在我的表中添加新行,但它没有回复Key值但是NULL(即使在Log中;但我从columnCount得到1)。
我在Stackoverflow周围挖掘,我没有看到任何类似或符合我的条件的答案。如果有任何解决方案,请帮助我。
==============
更新
这是表格架构
CREATE TABLE [CountTab](
[id] [char](10) NOT NULL,
[t] [char](1) NOT NULL,
CONSTRAINT [PK_CountTab] PRIMARY KEY CLUSTERED
(
[id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
我想我可能会弄清楚他/她为什么会制作这样的表:因为ID需要以这样的日期形式开始yyMMddxxxx
。
例如:如果我今天有3个插入,那么我可以看到表中的3个记录(1609060000,1609060001,1609060002);第二天,新记录将有新的开始日期(1609070000,1609070001,1609070002)。
这很棘手,但可能对某些区域有用(但我仍然无法从RETURN_GENERATED_KEYS获取密钥)。
答案 0 :(得分:0)
没关系,我创建了另一个具有自动增量标识的表,现在RETURN_GENERATED_KEYS正常工作。看起来它不支持不是身份的密钥。