Function Command.bindParameterTuple

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

void bindParameterTuple(T...) (
  ref T args
);

You can use this method to bind a set of variables if you don't need any specialization, that is there will be no null values, and 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.