Oracle
 sql >> Database >  >> RDS >> Oracle

Il modo più pulito per creare una stringa SQL in Java

Prima di tutto considera l'utilizzo dei parametri di query nelle istruzioni preparate:

PreparedStatement stm = c.prepareStatement("UPDATE user_table SET name=? WHERE id=?");
stm.setString(1, "the name");
stm.setInt(2, 345);
stm.executeUpdate();

L'altra cosa che si può fare è mantenere tutte le query nel file delle proprietà. Ad esempio, in un file query.properties è possibile inserire la query precedente:

update_query=UPDATE user_table SET name=? WHERE id=?

Quindi con l'aiuto di una semplice classe di utilità:

public class Queries {

    private static final String propFileName = "queries.properties";
    private static Properties props;

    public static Properties getQueries() throws SQLException {
        InputStream is = 
            Queries.class.getResourceAsStream("/" + propFileName);
        if (is == null){
            throw new SQLException("Unable to load property file: " + propFileName);
        }
        //singleton
        if(props == null){
            props = new Properties();
            try {
                props.load(is);
            } catch (IOException e) {
                throw new SQLException("Unable to load property file: " + propFileName + "\n" + e.getMessage());
            }           
        }
        return props;
    }

    public static String getQuery(String query) throws SQLException{
        return getQueries().getProperty(query);
    }

}

potresti utilizzare le tue query come segue:

PreparedStatement stm = c.prepareStatement(Queries.getQuery("update_query"));

Questa è una soluzione piuttosto semplice, ma funziona bene.