Преди всичко помислете за използването на параметри на заявка в подготвени изрази:
PreparedStatement stm = c.prepareStatement("UPDATE user_table SET name=? WHERE id=?");
stm.setString(1, "the name");
stm.setInt(2, 345);
stm.executeUpdate();
Другото нещо, което може да се направи, е да се запазят всички заявки във файла със свойства. Например във файл queries.properties можете да поставите горната заявка:
update_query=UPDATE user_table SET name=? WHERE id=?
След това с помощта на прост полезен клас:
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);
}
}
можете да използвате вашите заявки, както следва:
PreparedStatement stm = c.prepareStatement(Queries.getQuery("update_query"));
Това е доста просто решение, но работи добре.