1

我正在尝试使用 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 中?

4

1 回答 1

2

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

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

ps.setBinaryStream(paramIdx++, input, (int)p_file.length());
于 2011-06-22T09:22:57.997 回答