public interface SqlUpdate
| Modifier and Type | Interface and Description |
|---|---|
static interface |
SqlUpdate.Apply
Call this between setting rows of parameters for a SQL statement.
|
@Nonnull @CheckReturnValue SqlUpdate argBoolean(Boolean arg)
@Nonnull @CheckReturnValue SqlUpdate argInteger(@Nullable Integer arg)
@Nonnull @CheckReturnValue SqlUpdate argInteger(@Nonnull String argName, @Nullable Integer arg)
@Nonnull @CheckReturnValue SqlUpdate argLong(@Nullable Long arg)
@Nonnull @CheckReturnValue SqlUpdate argFloat(@Nullable Float arg)
@Nonnull @CheckReturnValue SqlUpdate argFloat(@Nonnull String argName, @Nullable Float arg)
@Nonnull @CheckReturnValue SqlUpdate argDouble(@Nullable Double arg)
@Nonnull @CheckReturnValue SqlUpdate argDouble(@Nonnull String argName, @Nullable Double arg)
@Nonnull @CheckReturnValue SqlUpdate argBigDecimal(@Nullable BigDecimal arg)
@Nonnull @CheckReturnValue SqlUpdate argBigDecimal(@Nonnull String argName, @Nullable BigDecimal arg)
@Nonnull @CheckReturnValue SqlUpdate argString(@Nullable String arg)
@Nonnull @CheckReturnValue SqlUpdate argString(@Nonnull String argName, @Nullable String arg)
@Nonnull @CheckReturnValue SqlUpdate argDate(@Nullable Date arg)
@Nonnull @CheckReturnValue SqlUpdate argDateNowPerApp()
@Nonnull @CheckReturnValue SqlUpdate argDateNowPerApp(@Nonnull String argName)
@Nonnull @CheckReturnValue SqlUpdate argDateNowPerDb()
@Nonnull @CheckReturnValue SqlUpdate argDateNowPerDb(@Nonnull String argName)
@Nonnull @CheckReturnValue SqlUpdate argBlobBytes(@Nullable byte[] arg)
@Nonnull @CheckReturnValue SqlUpdate argBlobBytes(@Nonnull String argName, @Nullable byte[] arg)
@Nonnull @CheckReturnValue SqlUpdate argBlobStream(@Nullable InputStream arg)
@Nonnull @CheckReturnValue SqlUpdate argBlobStream(@Nonnull String argName, @Nullable InputStream arg)
@Nonnull @CheckReturnValue SqlUpdate argClobString(@Nullable String arg)
@Nonnull @CheckReturnValue SqlUpdate argClobString(@Nonnull String argName, @Nullable String arg)
@Nonnull @CheckReturnValue SqlUpdate argClobReader(@Nullable Reader arg)
@Nonnull @CheckReturnValue SqlUpdate argClobReader(@Nonnull String argName, @Nullable Reader arg)
@Nonnull @CheckReturnValue SqlUpdate withArgs(SqlArgs args)
@Nonnull @CheckReturnValue SqlUpdate apply(SqlUpdate.Apply apply)
@CheckReturnValue int update()
void update(int expectedRowsUpdated)
WrongNumberOfRowsException - if the number of rows updated did not match
the value providedCopyright © 2016. All rights reserved.