簡體   English   中英

我不明白的代碼部分

[英]code part I do not understand

我不明白為什么在這段代碼中這樣做:

query.setString("idFamilleDeProduit", String.valueOf(familleDeProduits.getFamilleDeProduitsGenerique().getId()));

當我在數據庫中查看表時, id列是integer

這是PostgreSql-9.4.1207

我的功能:

public List<ContratMdd> recherchePourDuplication(String typeAccord, FamilleDeProduitsNomenclature familleDeProduits, SocieteInterne societeInterne, SocieteExterne societeExterne, String anneeAccord) throws PersistenceException {

    List<ContratMdd> listContratMdd = new ArrayList<ContratMdd>();

    String requete = "";

    if (!"".equals(anneeAccord)){
        requete += " anneeAccord = :anneeAccord";
    }
    if (!"".equals(typeAccord) && ! "".equals(requete)){
        requete += " AND";
    }
    if (!"".equals(typeAccord)){
        requete += " type = :type";
    }

    boolean existFamille = false;

    requete += (familleDeProduits != null && familleDeProduits.getFamilleDeProduitsGenerique() != null) ? " AND " : "";

    if(familleDeProduits != null && familleDeProduits.getFamilleDeProduitsGenerique() != null){
        existFamille = true;
        requete += " estAppliqueSur.familleDeProduitsGenerique IS NOT NULL AND  estAppliqueSur.familleDeProduitsGenerique.id = :idFamilleDeProduit";
    }


    boolean existSocieteInterne = false;
    boolean existSocieteExterne = false;

    requete += (societeInterne != null) ? " AND " : "";

    if(societeInterne != null){

        existSocieteInterne = true;
        String table = societeInterne instanceof Master ? "MasterImpl" : "AdherentImpl";
        requete += " contractantInterne.id = :idsocieteInterne AND contractantInterne IN (FROM "+table+") ";
    }

    requete += (societeExterne != null) ? " AND " : "";

    if(societeExterne!=null){

        existSocieteExterne = true;
        String table = societeExterne instanceof GroupeIndustriel ? "GroupeIndustrielImpl" : "FournisseurImpl";
        requete += " contractantExterne.id = :idsocieteExterne AND contractantExterne IN (FROM "+table+") ";

    }


    if (!"".equals(requete)) {

        requete = "from ContratMddImpl where" + requete;
        Query query = createQuery(requete);

        if (!"".equals(anneeAccord)){
            query.setBigInteger("anneeAccord", new BigInteger(anneeAccord));
        }
        if (!"".equals(typeAccord)){
            query.setString("type", typeAccord);
        }
        if(existFamille){
            query.setString("idFamilleDeProduit", String.valueOf(familleDeProduits.getFamilleDeProduitsGenerique().getId()));
        }
        if (existSocieteInterne){
            query.setInteger("idsocieteInterne", societeInterne.getId());
        }
        if (existSocieteExterne){
            query.setInteger("idsocieteExterne", societeExterne.getId());
        }

        listContratMdd.addAll((List<ContratMdd>) query.list());     
    }

    return listContratMdd;
}

之所以發生這種情況,是因為Postgre的數據庫驅動程序允許它。 但是您應該對一個Integer使用setInt()而不是setString() ,因為其他數據庫驅動程序可能不支持它。

這是java.sql.PreparedStatement文檔必須說的內容:

注意:用於設置IN參數值的setter方法(setShort,setString等)必須指定與輸入參數的已定義SQL類型兼容的類型。 例如,如果IN參數的SQL類型為INTEGER,則應使用setInt方法。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM