0

你好朋友我正在运行下面给出的代码,其中包含 setLogTimeEntery 函数,当这个函数执行时我得到

“错误:java.sql.SQLException:ORA-00917:缺少逗号”

错误,我的数据库是 oracle,请任何人告诉我问题出在哪里。

public int setLogTimeEntery(Connection con, LogTimeBean ltb) {

int ans = 0;

    try{
        psmt=con.prepareStatement("Insert into TR_LogTime values((Select count(*) from Tr_LogTime) + 1 ,(select sysdate from dual) , Prj_Id=?,Area_Id=?,Actvity_Id=?,ID_No=?,Work_Date=(select to_date(?,'dd/mm/yyyy')from dual) ,Work_Hours=?,Division=?,Description=?,Remarks=?,Work_Week=?)");
        psmt.clearParameters();
        psmt.setString(1,ltb.getLt_Prj_Id());
        psmt.setInt(2,ltb.getLt_Area_Id());
        psmt.setInt(3,ltb.getLt_Actvity_Id());
        psmt.setInt(4, ltb.getLt_ID_No());
        psmt.setString(5, ltb.getLt_Work_Date());
        psmt.setFloat(6,ltb.getLt_Work_Hours());
        psmt.setInt(7,ltb.getLt_Division());
        psmt.setString(8, ltb.getLt_Description());
        psmt.setString(9, ltb.getLt_Remarks());
        psmt.setInt(10, ltb.getLt_Work_Week());
        ans=psmt.executeUpdate();
        psmt.close();
    }catch(Exception e){
        System.err.println("Error : "+e);
    }
    return ans;
}
4

2 回答 2

1

我不认为您的 Oracle SQL 语句(在准备好的语句中定义)是有效的。使用insert into [table] values(...)语法时,不要使用column=value表达式。

如果您以正确的顺序指定所有列值,请使用以下命令:

psmt=con.prepareStatement("Insert into TR_LogTime values((Select count(*) from Tr_LogTime) + 1 ,(select sysdate from dual), ?, ?, ?, ?,(select to_date(?,'dd/mm/yyyy')from dual) ,?,?,?,?,?)");

否则,如果您只指定列的子集,请使用以下语法

insert into TR_LogTime (col1, col2, col3, ...) values (?, ?, ?, ...)

(我没有在您的示例中指定确切的列名,因为我不知道所有这些)

有关此语法的更多信息

于 2010-03-03T05:38:59.747 回答
0

试试这个:

Insert into TR_LogTime (XXX, YYY, Prj_Id, Area_id, Activity_Id, ID_No, Work_Date, Work_Hours, Division, Description, Remarks, Work_Week) values (
(Select count(*) from Tr_LogTime) + 1 , (select sysdate from dual) , ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)

您需要将 XXX 和 YYY 替换为适当的列名

于 2010-03-03T05:41:48.867 回答