Gangmax Blog

My Tip 36

使用Spring KeyHolder期待insert数据之后的id,但运行后发现无法得到。Google后发现问题如下:

1
pstmt = conn.prepareStatement(sql,Statement.RETURN_GENERATED_KEYS);

加入这个参数后即可。

奇怪的是:张震的jdbc framework也没有加啊!!!

Comments