Uses of Class
org.springframework.jdbc.core.namedparam.ParsedSql
Packages that use ParsedSql
Package
Description
JdbcTemplate variant with named parameter support.
The classes in this package represent RDBMS queries, updates,
and stored procedures as threadsafe, reusable objects.
-
Uses of ParsedSql in org.springframework.jdbc.core.namedparam
Methods in org.springframework.jdbc.core.namedparam that return ParsedSqlModifier and TypeMethodDescriptionprotected ParsedSqlNamedParameterJdbcTemplate.getParsedSql(String sql) Obtain a parsed representation of the given SQL statement.static ParsedSqlNamedParameterUtils.parseSqlStatement(String sql) Parse the SQL statement and locate any placeholders or named parameters.Methods in org.springframework.jdbc.core.namedparam with parameters of type ParsedSqlModifier and TypeMethodDescriptionstatic List<SqlParameter>NamedParameterUtils.buildSqlParameterList(ParsedSql parsedSql, SqlParameterSource paramSource) Convert parameter declarations from an SqlParameterSource to a corresponding List of SqlParameters.static int[]NamedParameterUtils.buildSqlTypeArray(ParsedSql parsedSql, SqlParameterSource paramSource) Convert parameter types from an SqlParameterSource into a corresponding int array.static Object[]NamedParameterUtils.buildValueArray(ParsedSql parsedSql, SqlParameterSource paramSource, List<SqlParameter> declaredParams) Convert a Map of named parameter values to a corresponding array.protected PreparedStatementCreatorFactoryNamedParameterJdbcTemplate.getPreparedStatementCreatorFactory(ParsedSql parsedSql, SqlParameterSource paramSource) Build aPreparedStatementCreatorFactorybased on the given SQL and named parameters.static StringNamedParameterUtils.substituteNamedParameters(ParsedSql parsedSql, SqlParameterSource paramSource) Parse the SQL statement and locate any placeholders or named parameters. -
Uses of ParsedSql in org.springframework.jdbc.object
Methods in org.springframework.jdbc.object that return ParsedSqlModifier and TypeMethodDescriptionprotected ParsedSqlSqlOperation.getParsedSql()Obtain a parsed representation of this operation's SQL statement.