1

我试图在执行 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

在此先感谢道格

4

4 回答 4

3

假设参数/参数是平衡的

(请确认查询是本机执行的,并且驱动程序支持 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 Data Server Driver for JDBC and SQLJ 版本 3.57 或更高版本,以下形式对于将行插入 DB2® for z/OS® 数据服务器上的视图无效。

Connection.prepareStatement(sql-statement, Statement.RETURN_GENERATED_KEYS);_

于 2012-06-19T17:34:26.503 回答
2

这种方式对我有用:

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

我曾经遇到过 oracle 数据库的问题,如果表有很多字段,这将无法正常工作。但即使有 60 个字段,上述内容也适用于我。

于 2012-06-20T06:48:59.673 回答
1

我的 JT400.jar 文件是旧版本。我从sourceforge下载了最新的jar文件,问题就解决了。

于 2013-01-08T17:44:38.370 回答
0

用语句试试

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();
于 2015-02-17T16:34:09.520 回答