使用jaybird 2.1.6在blob字段中插入文件

时间:2011-06-22 09:08:56

标签: java file blob firebird jaybird

我正在尝试使用lib jaybird 2.1.6在Firebird数据库的blob字段中插入文件。

首先,我在我的数据库中创建一条记录,然后,使用记录的id,我尝试在blob(子类型0)字段中插入我的文件。

这是我的代码:

public static boolean insertBlob(File p_file, String p_maxId) {
    String requette = 
        "UPDATE MAIL_RECU a SET a.CONTENU=? where a.ID_MESSAGE_RECU="+ p_maxId;

    PreparedStatement ps = null;
    FileInputStream input = null;
    try {
        ps = laConnexion.prepareStatement(requette);
        input = new FileInputStream(p_file);

        int paramIdx = 1;
        ps.setBinaryStream(paramIdx++, input, p_file.length());
        ps.executeUpdate();
    } catch (SQLException e) {
        System.out.println("cause: " + e.getCause());
        System.out.println("stacktrace: " + e.getStackTrace());
        System.out.println(e);
        messageUtilisateur.affMessageException(e,
                "Erreur à l'insertion d'un blob");
    } catch (FileNotFoundException e) {
        messageUtilisateur.affMessageException(e,
                "impossible de trouver le fichier");
    } finally {
        try {
            ps.close();
            input.close();

        } catch (SQLException e) {
            messageUtilisateur.affMessageException(e,
                    "Erreur à l'insertion d'un blob");
        } catch (IOException e) {
            messageUtilisateur.affMessageException(e, "fichier non trouvé");

        }
    }

    return true;
}

问题是我在

时有例外
ps.setBinaryStream(paramIdx++, input, p_file.length());

已执行。

我有一条消息“java.sql.SQLException:尚未实现”。我的问题是,有人已经有这个问题吗?如果是的话,他(或她)是如何解决的?还有另一种方法用jaybird在blob中存储文件吗?

1 个答案:

答案 0 :(得分:2)

setBinaryStream(int, InputStream, long)是JDBC4(Java 6)方法。

据我所知,Jaybird仍然是JDBC3,所以你需要使用PreparedStatement.setBinaryStream(int, InputStream, int)代替:

ps.setBinaryStream(paramIdx++, input, (int)p_file.length());