java.sql.SQLException:ORA-00600:内部错误代码,参数:[12811],[93233]

时间:2014-04-08 18:11:13

标签: java sql oracle ora-00600

我在尝试执行时得到了这个

            File f = new File("file location");
            FileInputStream fis = new FileInputStream(f);
            PreparedStatement ps = db.prepareStatement("INSERT INTO table (title,file,id) VALUES('title',?,7)");
            ps.setBinaryStream(1, fis, (int)f.length());
            ps.execute();
            ps.close();

title - VARCHAR2
档案 - BLOB
id - FK到另一个表

使用另一个表的操作正在运行,一切都很好但是这个。我试图改变语句,删除并重新创建表。没有结果

0 个答案:

没有答案