Created
April 27, 2018 09:37
-
-
Save xzel23/5936468b192deb59bedcf43f95db59a3 to your computer and use it in GitHub Desktop.
Named Parameter Statements for SQL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.dua3.sql; | |
import java.sql.Connection; | |
import java.sql.Date; | |
import java.sql.PreparedStatement; | |
import java.sql.ResultSet; | |
import java.sql.SQLException; | |
import java.sql.Statement; | |
import java.sql.Timestamp; | |
import java.time.LocalDate; | |
import java.time.LocalDateTime; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Objects; | |
/** | |
* <p> | |
* This code is taken from "Java World: Named Parameters for PreparedStatement" | |
* and changed for Java 8 compatibility, and to support the new date/time classes | |
* introduced in that version of Java. | |
* </p> | |
* | |
* Original comment: | |
* <br> | |
* | |
* This class wraps around a {@link PreparedStatement} and allows the programmer | |
* to set parameters by name instead of by index. This eliminates any confusion | |
* as to which parameter index represents what. This also means that rearranging | |
* the SQL statement or adding a parameter doesn't involve renumbering your | |
* indices. Code such as this: | |
* | |
* <pre> | |
* {@code | |
* Connection con=getConnection(); | |
* String query="select * from my_table where name=? or address=?"; | |
* PreparedStatement p=con.prepareStatement(query); | |
* p.setString(1, "bob"); | |
* p.setString(2, "123 terrace ct"); | |
* ResultSet rs=p.executeQuery(); | |
* } | |
* </pre> | |
* | |
* can be replaced with: | |
* | |
* <pre> | |
* {@code | |
* Connection con=getConnection(); | |
* String query="select * from my_table where name=:name or address=:address"; | |
* NamedParameterStatement p=new NamedParameterStatement(con, query); | |
* p.setString("name", "bob"); | |
* p.setString("address", "123 terrace ct"); | |
* ResultSet rs=p.executeQuery(); | |
* } | |
* </pre> | |
* | |
* @author adam_crume | |
*/ | |
public class NamedParameterStatement implements AutoCloseable { | |
/** The statement this object is wrapping. */ | |
private final PreparedStatement statement; | |
/** | |
* Maps parameter names to arrays of ints which are the parameter indices. | |
*/ | |
private final Map<String,List<Integer>> indexMap; | |
/** | |
* Creates a NamedParameterStatement. Wraps a call to | |
* c.{@link Connection#prepareStatement(java.lang.String) prepareStatement}. | |
* | |
* @param connection | |
* the database connection | |
* @param query | |
* the parameterized query | |
* @throws SQLException | |
* if the statement could not be created | |
*/ | |
public NamedParameterStatement(Connection connection, String query) throws SQLException { | |
indexMap = new HashMap<>(); | |
String parsedQuery = parse(query, indexMap); | |
statement = connection.prepareStatement(parsedQuery); | |
} | |
/** | |
* Parses a query with named parameters. The parameter-index mappings are put | |
* into the map, and the parsed query is returned. DO NOT CALL FROM CLIENT | |
* CODE. This method is non-private so JUnit code can test it. | |
* | |
* @param query | |
* query to parse | |
* @param paramMap | |
* map to hold parameter-index mappings | |
* @return the parsed query | |
*/ | |
static final String parse(String query, Map<String, List<Integer>> paramMap) { | |
// I was originally using regular expressions, but they didn't work well for | |
// ignoring parameter-like strings inside quotes. | |
int length = query.length(); | |
StringBuilder parsedQuery = new StringBuilder(length); | |
boolean inSingleQuote = false; | |
boolean inDoubleQuote = false; | |
int index = 1; | |
for (int i = 0; i < length; i++) { | |
char c = query.charAt(i); | |
if (inSingleQuote) { | |
if (c == '\'') { | |
inSingleQuote = false; | |
} | |
} else if (inDoubleQuote) { | |
if (c == '"') { | |
inDoubleQuote = false; | |
} | |
} else { | |
if (c == '\'') { | |
inSingleQuote = true; | |
} else if (c == '"') { | |
inDoubleQuote = true; | |
} else if (c == ':' && i + 1 < length | |
&& Character.isJavaIdentifierStart(query.charAt(i + 1))) { | |
int j = i + 2; | |
while (j < length && Character.isJavaIdentifierPart(query.charAt(j))) { | |
j++; | |
} | |
String name = query.substring(i + 1, j); | |
c = '?'; // replace the parameter with a question mark | |
i += name.length(); // skip past the end if the parameter | |
List<Integer> indexList = paramMap.get(name); | |
if (indexList==null) { | |
indexList = new ArrayList<>(); | |
paramMap.put(name, indexList); | |
} | |
indexList.add(index); | |
index++; | |
} | |
} | |
parsedQuery.append(c); | |
} | |
return parsedQuery.toString(); | |
} | |
/** | |
* Returns the indexes for a parameter. | |
* | |
* @param name | |
* parameter name | |
* @return parameter indexes | |
* @throws IllegalArgumentException | |
* if the parameter does not exist | |
*/ | |
private List<Integer> getIndexes(String name) { | |
return Objects.requireNonNull(indexMap.get(name), "Unbekannter Parameter '"+name+"'."); | |
} | |
/** | |
* Sets a parameter. | |
* | |
* @param name | |
* parameter name | |
* @param value | |
* parameter value | |
* @throws SQLException | |
* if an error occurred | |
* @throws IllegalArgumentException | |
* if the parameter does not exist | |
* @see PreparedStatement#setObject(int, java.lang.Object) | |
*/ | |
public void setObject(String name, Object value) throws SQLException { | |
for (int idx: getIndexes(name)) { | |
statement.setObject(idx, value); | |
} | |
} | |
/** | |
* Sets a parameter. | |
* | |
* @param name | |
* parameter name | |
* @param value | |
* parameter value | |
* @throws SQLException | |
* if an error occurred | |
* @throws IllegalArgumentException | |
* if the parameter does not exist | |
* @see PreparedStatement#setString(int, java.lang.String) | |
*/ | |
public void setString(String name, String value) throws SQLException { | |
for (int idx: getIndexes(name)) { | |
statement.setString(idx, value); | |
} | |
} | |
/** | |
* Sets a parameter. | |
* | |
* @param name | |
* parameter name | |
* @param value | |
* parameter value | |
* @throws SQLException | |
* if an error occurred | |
* @throws IllegalArgumentException | |
* if the parameter does not exist | |
* @see PreparedStatement#setInt(int, int) | |
*/ | |
public void setInt(String name, int value) throws SQLException { | |
for (int idx: getIndexes(name)) { | |
statement.setInt(idx, value); | |
} | |
} | |
/** | |
* Sets a parameter. | |
* | |
* @param name | |
* parameter name | |
* @param value | |
* parameter value | |
* @throws SQLException | |
* if an error occurred | |
* @throws IllegalArgumentException | |
* if the parameter does not exist | |
* @see PreparedStatement#setInt(int, int) | |
*/ | |
public void setLong(String name, long value) throws SQLException { | |
for (int idx: getIndexes(name)) { | |
statement.setLong(idx, value); | |
} | |
} | |
/** | |
* Sets a parameter. | |
* | |
* @param name | |
* parameter name | |
* @param value | |
* parameter value | |
* @throws SQLException | |
* if an error occurred | |
* @throws IllegalArgumentException | |
* if the parameter does not exist | |
* @see PreparedStatement#setTimestamp(int, java.sql.Timestamp) | |
*/ | |
public void setTimestamp(String name, Timestamp value) throws SQLException { | |
for (int idx: getIndexes(name)) { | |
statement.setTimestamp(idx, value); | |
} | |
} | |
/** | |
* Returns the underlying statement. | |
* | |
* @return the statement | |
*/ | |
public PreparedStatement getStatement() { | |
return statement; | |
} | |
/** | |
* Executes the statement. | |
* | |
* @return true if the first result is a {@link ResultSet} | |
* @throws SQLException | |
* if an error occurred | |
* @see PreparedStatement#execute() | |
*/ | |
public boolean execute() throws SQLException { | |
return statement.execute(); | |
} | |
/** | |
* Executes the statement, which must be a query. | |
* | |
* @return the query results | |
* @throws SQLException | |
* if an error occurred | |
* @see PreparedStatement#executeQuery() | |
*/ | |
public ResultSet executeQuery() throws SQLException { | |
return statement.executeQuery(); | |
} | |
/** | |
* Executes the statement, which must be an SQL INSERT, UPDATE or DELETE | |
* statement; or an SQL statement that returns nothing, such as a DDL | |
* statement. | |
* | |
* @return number of rows affected | |
* @throws SQLException | |
* if an error occurred | |
* @see PreparedStatement#executeUpdate() | |
*/ | |
public int executeUpdate() throws SQLException { | |
return statement.executeUpdate(); | |
} | |
/** | |
* Closes the statement. | |
* | |
* @throws SQLException | |
* if an error occurred | |
* @see Statement#close() | |
*/ | |
@Override | |
public void close() throws SQLException { | |
statement.close(); | |
} | |
/** | |
* Adds the current set of parameters as a batch entry. | |
* | |
* @throws SQLException | |
* if something went wrong | |
*/ | |
public void addBatch() throws SQLException { | |
statement.addBatch(); | |
} | |
/** | |
* Executes all of the batched statements. | |
* | |
* See {@link Statement#executeBatch()} for details. | |
* | |
* @return update counts for each statement | |
* @throws SQLException | |
* if something went wrong | |
*/ | |
public int[] executeBatch() throws SQLException { | |
return statement.executeBatch(); | |
} | |
public void setFetchSize(int rows) throws SQLException { | |
statement.setFetchSize(rows); | |
} | |
/** | |
* Sets a parameter. | |
* | |
* @param name | |
* parameter name | |
* @param value | |
* parameter value | |
* @throws SQLException | |
* if an error occurred | |
* @throws IllegalArgumentException | |
* if the parameter does not exist | |
* @see PreparedStatement#setTimestamp(int, java.sql.Timestamp) | |
*/ | |
public void setLocalDate(String name, LocalDate value) throws SQLException { | |
Date date = Date.valueOf(value); | |
for (int idx: getIndexes(name)) { | |
statement.setDate(idx, date); | |
} | |
} | |
/** | |
* Sets a parameter. | |
* | |
* @param name | |
* parameter name | |
* @param value | |
* parameter value | |
* @throws SQLException | |
* if an error occurred | |
* @throws IllegalArgumentException | |
* if the parameter does not exist | |
* @see PreparedStatement#setTimestamp(int, java.sql.Timestamp) | |
*/ | |
public void setLocalDateTime(String name, LocalDateTime value) throws SQLException { | |
Timestamp t = Timestamp.valueOf(value); | |
for (int idx: getIndexes(name)) { | |
statement.setTimestamp(idx, t); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No need to count
?
in your PreparedStatement's SQL anymore! Write your SQL like this:... and use it like this: