Prepared.setArgs

Bind a tuple of D variables to the parameters of a prepared statement.

You can use this method to bind a set of variables if you don't need any specialization, that is chunked transfer is not neccessary.

The tuple must match the required number of parameters, and it is the programmer's responsibility to ensure that they are of appropriate types.

More...
  1. void setArgs(T args)
    struct Prepared
    void
    setArgs
    (
    T...
    )
    ()
    if (
    T.length == 0 ||
    !is(T[0] == Variant[])
    )
  2. void setArgs(Variant[] args, ParameterSpecialization[] psnList)

Detailed Description

Type Mappings

$(TYPE_MAPPINGS)

Meta