Uses of Class
org.soulwing.jdbc.Parameter
-
Packages that use Parameter Package Description org.soulwing.jdbc JDBC facade and supporting classesorg.soulwing.jdbc.logger Logging support -
-
Uses of Parameter in org.soulwing.jdbc
Methods in org.soulwing.jdbc that return Parameter Modifier and Type Method Description static ParameterParameter. in(int type, Object value)Creates a new input parameter with the given value.static ParameterParameter. in(Object value)Creates a new input parameter with the given value.static ParameterParameter. inout(int type, Object value)Creates a new input/output parameter with the given type.static ParameterParameter. out(int type)Creates a new output parameter with the given type.static ParameterParameter. with(int type, Object value)Creates a new input parameter with the given value.static ParameterParameter. with(Object value)Creates a new input parameter with the given value.Methods in org.soulwing.jdbc with parameters of type Parameter Modifier and Type Method Description booleanJdbcCall. execute(Parameter... parameters)Executes this call operation.voidJdbcQuery. execute(Parameter... parameters)Executes the query, processing the result set with the configured handler.intJdbcUpdate. execute(Parameter... parameters)Executes this update.List<T>JdbcQuery. retrieveList(Parameter... parameters)Executes the query, retrieving the list of values for all matching rows.TJdbcQuery. retrieveValue(Parameter... parameters)Executes the query, retrieving a value representing the matching row -
Uses of Parameter in org.soulwing.jdbc.logger
Methods in org.soulwing.jdbc.logger with parameters of type Parameter Modifier and Type Method Description voidFormattingJdbcLogger. writeParameters(Parameter[] parameters)voidJclJdbcLogger. writeParameters(Parameter[] parameters)voidJdbcLogger. writeParameters(Parameter[] parameters)Writes the parameters that will be bound for an SQL statement.voidJuliJdbcLogger. writeParameters(Parameter[] parameters)voidLog4j2JdbcLogger. writeParameters(Parameter[] parameters)voidNullJdbcLogger. writeParameters(Parameter[] parameters)voidPrintWriterJdbcLogger. writeParameters(Parameter[] parameters)voidSlf4jJdbcLogger. writeParameters(Parameter[] parameters)
-