spring-framework icon indicating copy to clipboard operation
spring-framework copied to clipboard

R2DBC: Requires access to the ParseSql and NamedParameterUtils class

Open geliotropv opened this issue 1 year ago • 0 comments

Ability to make the ParsedSql class available from outside

Faced the problem of adding parameters in sql query. The situation is such that we use requests that can change from the configuration file, which leads to the fact that it is not known in advance which parameters can be in it.

solution i'd like

package org.springframework.r2dbc.core
public class ParsedSql {}

package org.springframework.r2dbc.core
public abstract class NamedParameterUtils{}

Or alternatives i've considered A functional for reading such parameters from a string sql query

geliotropv avatar Aug 04 '22 11:08 geliotropv