1

所以我有代码:

public void addUser( 
            String username, String password,
            String f_name, String l_name, String email) 
    {
        try 
        {
            //conn.setAutoCommit(false); 
            pstmnt = conn.prepareStatement("INSERT INTO users VALUES (?,?,?,?)");
            pstmnt.setString(1, "user_id_increment.nextval");
            pstmnt.setString(2, username);
            pstmnt.setString(3, password);
            pstmnt.setInt(4, 0);

            pstmnt.execute();

在 OraclebI 中,序列如下:

--Auto incrementing the user_id
CREATE SEQUENCE user_id_increment
MINVALUE 1
START WITH 1
INCREMENT BY 1
CACHE 20;

但是,我在 eclipse 中遇到了异常:

Error: ORA-01722: invalid number

我认为调用序列 name.nextval 会给我序列中的下一个值,当我插入任何其他整数时 setString 工作。

有任何想法吗?

4

1 回答 1

5

尝试

pstmnt = conn.prepareStatement("INSERT INTO users VALUES (user_id_increment.nextval,?,?,?)");
        pstmnt.setString(1, username);
        pstmnt.setString(2, password);
        pstmnt.setInt(3, 0);

您必须在 SQL 语句中包含您的序列,而不是将其作为参数传递。

setString 适用于其他整数的原因可能是因为 jdbc 驱动程序可以将它们强制转换为整数(并且它不能强制 "user_id_increment.nextval" )

于 2013-06-19T13:41:46.930 回答