我需要使用数据库Firebird,为此,我使用Jaybird 2.2.9。

当我使用MySQL驱动程序时,以这种方式将ResultSet转换为Object

empresa.setBairro(rs.getString("empresa.bairro")); // (Table.Column)
empresa.setCep(rs.getString("empresa.cep")); // (Table.Column)
empresa.setCidade(rs.getString("empresa.cidade")); // (Table.Column)


但是使用Jaybird,resultSet不返回rs.getString("Table.Column")

当我在SQL中具有内部联接时,需要这种方式。

有人帮我吗

这是我的完整代码

public ContaLivros converterContaLivros(ResultSet rs, Integer linha) throws Exception {
    if (rs.first()) {

        rs.absolute(linha);

        ContaLivros obj = new ContaLivros();

        obj.setId(rs.getLong("cad_conta.auto_id"));
        obj.setNome(rs.getString("cad_conta.nome"));


        if (contain("cad_banco.auto_id", rs)) {

            obj.setBancoLivros(converterBancoLivros(rs, linha));
        } else {

            obj.setBancoLivros(new BancoLivros(rs.getLong("cad_conta.banco"), null, null, null));
        }
        obj.setAgencia(rs.getInt("cad_conta.agencia"));
        obj.setAgenciaDigito(rs.getInt("cad_conta.agencia_digito"));
        obj.setConta(rs.getInt("cad_conta.conta"));
        obj.setContaDigito(rs.getInt("cad_conta.conta_digito"));
        obj.setLimite(rs.getDouble("cad_conta.limite"));
        obj.setAtivo(rs.getString("cad_conta.ativo"));

        return obj;
    } else {
        return null;
    }
}

最佳答案

你不能Jaybird按照JDBC 4.2第15.2.3节中指定的标签检索列。在Firebird中,列标签要么是原始列名,要么是AS别名,表名不属于该列名。可以为表名添加歧义的MySQL扩展名是非标准的。

您的选择是在查询中指定别名并通过此别名进行检索,或者处理结果集元数据以找到每个列的正确索引并改为通过索引进行检索。

但是请注意,在某些查询(例如UNION)中,ResultSetMetaData.getTableName无法返回表名,因为Firebird不会“知道”该表名(因为您可能将UNION应用于从不同表中选择的内容)。

09-25 17:50