Uses of Class
com.gengoai.sql.NamedPreparedStatement
-
Packages that use NamedPreparedStatement Package Description com.gengoai.sql com.gengoai.sql.statement -
-
Uses of NamedPreparedStatement in com.gengoai.sql
Method parameters in com.gengoai.sql with type arguments of type NamedPreparedStatement Modifier and Type Method Description <T> int
SQLContext. multiThreadedBatch(@NonNull SQLElement sql, @NonNull Stream<? extends T> items, @NonNull CheckedBiConsumer<T,NamedPreparedStatement> consumer, int batchSize)
Multi threaded batch int. -
Uses of NamedPreparedStatement in com.gengoai.sql.statement
Method parameters in com.gengoai.sql.statement with type arguments of type NamedPreparedStatement Modifier and Type Method Description default <T> int
UpdateStatement. batch(@NonNull SQLContext context, @NonNull Collection<? extends T> items, @NonNull CheckedBiConsumer<T,NamedPreparedStatement> statementFiller)
Performs a batch update over a Collection of items filling theNamedPreparedStatement
using the given CheckedBiConsumer.default <T> int
UpdateStatement. batch(@NonNull SQLContext context, @NonNull Collection<? extends T> items, @NonNull CheckedBiConsumer<T,NamedPreparedStatement> statementFiller, int batchSize)
Performs a batch update over a Collection of items filling theNamedPreparedStatement
using the given CheckedBiConsumer.default <T> int
UpdateStatement. batch(@NonNull SQLContext context, @NonNull Stream<? extends T> items, @NonNull CheckedBiConsumer<T,NamedPreparedStatement> statementFiller)
Performs a batch update over a Stream of items filling theNamedPreparedStatement
using the given CheckedBiConsumer.default <T> int
UpdateStatement. batch(@NonNull SQLContext context, @NonNull Stream<? extends T> items, @NonNull CheckedBiConsumer<T,NamedPreparedStatement> statementFiller, int batchSize)
Performs a batch update over a Stream of items filling theNamedPreparedStatement
using the given CheckedBiConsumer.default <T> int
UpdateStatement. update(@NonNull SQLContext context, T value, @NonNull CheckedBiConsumer<? super T,NamedPreparedStatement> statementFiller)
Performs the update s using the givenSQLContext
filling in value placeholders using the given value and the consumer to for filling the statement.
-