Statement.inject

Binds arguments, executes and resets the statement, in one call.

This convenience function is equivalent to:

bindAll(args);
execute();
reset();
  1. void inject(Args args)
    struct Statement
    void
    inject
    (
    Args...
    )
    (
    Args args
    )
    if (
    allSatisfy!(isBindable, Args)
    )
  2. void inject(T obj)
  3. void inject(T obj)

Meta