我在尝试执行时得到了这个
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到另一个表
使用另一个表的操作正在运行,一切都很好但是这个。我试图改变语句,删除并重新创建表。没有结果