java向Oracle数据库中插入数据时总是提示

2024-11-06 11:29:35
推荐回答(1个)
回答(1):

int i = pstmt.executeUpdate(sql);
改成
int i = pstmt.executeUpdate();
试下