Uses of Class
org.jdbi.v3.core.array.SqlArrayArgumentStrategy
-
Packages that use SqlArrayArgumentStrategy Package Description org.jdbi.v3.core.array Thearraypackage binds Java arrays and collections to SQL arrays, and handles mapping array result types back to Java arrays and collections.org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution. -
-
Uses of SqlArrayArgumentStrategy in org.jdbi.v3.core.array
Fields in org.jdbi.v3.core.array declared as SqlArrayArgumentStrategy Modifier and Type Field Description private SqlArrayArgumentStrategySqlArrayTypes. argumentStrategyMethods in org.jdbi.v3.core.array that return SqlArrayArgumentStrategy Modifier and Type Method Description SqlArrayArgumentStrategySqlArrayTypes. getArgumentStrategy()Returns the strategy used to bind array-type arguments to SQL statements.static SqlArrayArgumentStrategySqlArrayArgumentStrategy. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SqlArrayArgumentStrategy[]SqlArrayArgumentStrategy. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jdbi.v3.core.array with parameters of type SqlArrayArgumentStrategy Modifier and Type Method Description SqlArrayTypesSqlArrayTypes. setArgumentStrategy(SqlArrayArgumentStrategy argumentStrategy)Sets the strategy used when binding array-type arguments to SQL statements. -
Uses of SqlArrayArgumentStrategy in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type SqlArrayArgumentStrategy Modifier and Type Method Description default ThisConfigurable. setSqlArrayArgumentStrategy(SqlArrayArgumentStrategy strategy)Convenience method forgetConfig(SqlArrayTypes.class).setArgumentStrategy(strategy) -
Uses of SqlArrayArgumentStrategy in org.jdbi.v3.core.statement
Methods in org.jdbi.v3.core.statement that return SqlArrayArgumentStrategy Modifier and Type Method Description SqlArrayArgumentStrategyStatementContext. getSqlArrayArgumentStrategy()Returns the strategy used by this context to bind array-type arguments to SQL statements.
-