Parameter

class ctds.Parameter(value, output=False)

Explicitly define a parameter for callproc(), execute(), or executemany(). This is necessary to indicate whether a parameter is SQL OUTPUT or INPUT/OUTPUT parameter.

Parameters
  • value (object) – The parameter’s value.

  • output (bool) – Is the parameter an output parameter.