Java的PreparedStatement的RETURN_GENERATED_KEYS不工作(Ja

2019-09-18 06:24发布

我试图让做SQL插入时,标识列回到了我的Java程序。 运行代码时,我收到以下错误

    Uncaught exception thrown in one of the service methods of the 
servlet: Cocoon. Exception thrown : java.lang.AbstractMethodError: java/sql
/Connection.prepareStatement(Ljava/lang/String;I)Ljava/sql/PreparedStatement;

这里是我运行的代码。

private void insertUserInputParameters(ReportData rptData){

     UserInputParameters userParams = rptData.getUserInputData();
     StringBuilder sql = new StringBuilder();
     PreparedStatement pstmt = null;
     ResultSet rs = null;
     int userDataId = -1;

    //Get a database connection.
    sl = ServiceLocator.getInstance();
    ds = sl.getDataSource("jdbc/collegeguide");
    con = ds.getConnection();
    con.setReadOnly(false);

    sql.append("insert into cpgusrdtaf (statecd, addr1, addr2, city, state, ");
    sql.append("zipcode, dependent, shdindic, marstatus, residency, prntatge, ");
    sql.append("fincome, mincome, pincome, taxspaid, taxreturn, elig1040, ");
    sql.append("gincome, pcash, inetwrth, bnetwrth, pbenefit, paddlinf, ");
    sql.append("puntax, pdslcwrk, smstatus, sresidncy, studtr, stud1040, ");
    sql.append("sadjinc, sincome, spincome, sdslcwrk, studtax, scash, ");
    sql.append("sinvest, snetwrth, saddlinf, suntax, househld, nmbrsch, ");
    sql.append("studact, studsat, schools, housing) ");
    sql.append("values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?, ");
    sql.append("?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");

    //This line of code is where I get the error**
    pstmt = con.prepareStatement(sql.toString(), Statement.RETURN_GENERATED_KEYS);

    //If I remove the 'Statement.RETURN_GENERATED_KEYS' I do not get the error.**
    pstmt = con.prepareStatement(sql.toString());

    setStatementValues(pstmt, userParams);
    pstmt.executeUpdate();

    rs = pstmt.getGeneratedKeys();
    if(rs.next()){
       userDataId = rs.getInt(1);
    }

我不能使用存储过程,所以我不能走这条路。 任何帮助将不胜感激

我使用Java 1.5

在此先感谢道格

Answer 1:

假设参数/参数均衡

(请确认查询本地执行,并且该驱动程序支持RETURN_GENERATED_KEYS)

你可以尝试使用RETURN_GENERATED_KEYS作为参数来执行executeUpdate呼叫的一部分?

pstmt = con.createStatement();
pstmt.executeUpdate(sql.toString(), Statement.RETURN_GENERATED_KEYS);

编辑:刚刚看了你的关于使用DB2笔记。 据http://publib.boulder.ibm.com/infocenter/db2luw/v9r7/index.jsp?topic=%2Fcom.ibm.db2.luw.apdv.java.doc%2Fsrc%2Ftpc%2Fimjcc_t0057053.html

_Restriction:对于IBM数据服务器驱动JDBC和SQLJ版本3.57或更高版本,以下形式不适用于将行插入在针对z / OS数据服务器DB2®的图。

各种Connection.prepareStatement(SQL语句,是Statement.RETURN_GENERATED_KEYS); _



Answer 2:

这样,它为我工作:

prepStmt = con.prepareStatement(sql, new String[]{"NameOfIDField"});

我曾经与其中如果表中有很多领域这是不工作的Oracle数据库的问题。 但是,上述与60场,甚至为我工作。



Answer 3:

我的jt400.jar文件是旧版本。 我从SourceForge下载最新的JAR文件和问题得到解决。



Answer 4:

与尝试声明

Statement st    = null;
ResultSet rs    = null;
st = con.createStatement();

String query = " INSERT INTO refac_folios
([usuario], [estatus]) VALUES ('" + usuario + "'," + Vista_FoliosRefacciones.ESTATUS_CREADO )" ;

Integer afectadas = st .executeUpdate( query, Statement.RETURN_GENERATED_KEYS );

if (afectadas > 0){

     rs = st.getGeneratedKeys();

     if (rs .next()) {
          folio = rs.getInt(1);
     }
  rs.close();
}
st.close();


文章来源: Java PreparedStatement RETURN_GENERATED_KEYS not working