Nejprve zvažte použití parametrů dotazu v připravených příkazech:
PreparedStatement stm = c.prepareStatement("UPDATE user_table SET name=? WHERE id=?");
stm.setString(1, "the name");
stm.setInt(2, 345);
stm.executeUpdate();
Další věc, kterou lze udělat, je ponechat všechny dotazy v souboru vlastností. Například do souboru queries.properties lze umístit výše uvedený dotaz:
update_query=UPDATE user_table SET name=? WHERE id=?
Potom pomocí jednoduché třídy utility:
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);
}
}
můžete své dotazy použít následovně:
PreparedStatement stm = c.prepareStatement(Queries.getQuery("update_query"));
Toto je poměrně jednoduché řešení, ale funguje dobře.