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 Parameter
Parameter. in(int type, Object value)
Creates a new input parameter with the given value.static Parameter
Parameter. in(Object value)
Creates a new input parameter with the given value.static Parameter
Parameter. inout(int type, Object value)
Creates a new input/output parameter with the given type.static Parameter
Parameter. out(int type)
Creates a new output parameter with the given type.static Parameter
Parameter. with(int type, Object value)
Creates a new input parameter with the given value.static Parameter
Parameter. 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 boolean
JdbcCall. execute(Parameter... parameters)
Executes this call operation.void
JdbcQuery. execute(Parameter... parameters)
Executes the query, processing the result set with the configured handler.int
JdbcUpdate. execute(Parameter... parameters)
Executes this update.List<T>
JdbcQuery. retrieveList(Parameter... parameters)
Executes the query, retrieving the list of values for all matching rows.T
JdbcQuery. 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 void
FormattingJdbcLogger. writeParameters(Parameter[] parameters)
void
JclJdbcLogger. writeParameters(Parameter[] parameters)
void
JdbcLogger. writeParameters(Parameter[] parameters)
Writes the parameters that will be bound for an SQL statement.void
JuliJdbcLogger. writeParameters(Parameter[] parameters)
void
Log4j2JdbcLogger. writeParameters(Parameter[] parameters)
void
NullJdbcLogger. writeParameters(Parameter[] parameters)
void
PrintWriterJdbcLogger. writeParameters(Parameter[] parameters)
void
Slf4jJdbcLogger. writeParameters(Parameter[] parameters)
-