类 NamedParameterUtils


  • public abstract class NamedParameterUtils
    extends Object
    Helper methods for named parameter parsing.

    Only intended for internal use within Spring's JDBC framework.

    从以下版本开始:
    2.0
    作者:
    Thomas Risberg, Juergen Hoeller
    • 方法详细资料

      • parseSqlStatement

        public static ParsedSql parseSqlStatement​(String sql)
        Parse the SQL statement and locate any placeholders or named parameters. Named parameters are substituted for a JDBC placeholder.
        参数:
        sql - the SQL statement
        返回:
        the parsed statement, represented as ParsedSql instance
      • substituteNamedParameters

        public static String substituteNamedParameters​(ParsedSql parsedSql,
                                                       SqlParameterSource paramSource)
        Parse the SQL statement and locate any placeholders or named parameters. Named parameters are substituted for a JDBC placeholder, and any select list is expanded to the required number of placeholders. Select lists may contain an array of objects, and in that case the placeholders will be grouped and enclosed with parentheses. This allows for the use of "expression lists" in the SQL statement like:

        select id, name, state from table where (name, age) in (('John', 35), ('Ann', 50))

        The parameter values passed in are used to determine the number of placeholders to be used for a select list. Select lists should be limited to 100 or fewer elements. A larger number of elements is not guaranteed to be supported by the database and is strictly vendor-dependent.

        参数:
        parsedSql - the parsed representation of the SQL statement
        paramSource - the source for named parameters
        返回:
        the SQL statement with substituted parameters
        另请参阅:
        parseSqlStatement(java.lang.String)
      • buildValueArray

        public static Object[] buildValueArray​(ParsedSql parsedSql,
                                               SqlParameterSource paramSource,
                                               List<SqlParameter> declaredParams)
        Convert a Map of named parameter values to a corresponding array.
        参数:
        parsedSql - the parsed SQL statement
        paramSource - the source for named parameters
        declaredParams - the List of declared SqlParameter objects (may be null). If specified, the parameter metadata will be built into the value array in the form of SqlParameterValue objects.
        返回:
        the array of values
      • buildSqlTypeArray

        public static int[] buildSqlTypeArray​(ParsedSql parsedSql,
                                              SqlParameterSource paramSource)
        Convert parameter types from an SqlParameterSource into a corresponding int array. This is necessary in order to reuse existing methods on JdbcTemplate. Any named parameter types are placed in the correct position in the Object array based on the parsed SQL statement info.
        参数:
        parsedSql - the parsed SQL statement
        paramSource - the source for named parameters
      • buildSqlParameterList

        public static List<SqlParameterbuildSqlParameterList​(ParsedSql parsedSql,
                                                               SqlParameterSource paramSource)
        Convert parameter declarations from an SqlParameterSource to a corresponding List of SqlParameters. This is necessary in order to reuse existing methods on JdbcTemplate. The SqlParameter for a named parameter is placed in the correct position in the resulting list based on the parsed SQL statement info.
        参数:
        parsedSql - the parsed SQL statement
        paramSource - the source for named parameters