执行插入后是否可以检索 autoinc 字段:
String queryString = "insert into " + String.format("table%04d", id) +
"(sectionid, topicid, dc) values (" + entry.getSectionId() +
", " + entry.getTopicId() + ", " + entry.getDc() + ")";
SQLQuery query = session.createSQLQuery(queryString);
query.executeUpdate();
该表有四个字段
eid - autoinc
sectionid - int
topicid - int
dc - int
请帮我