Skip to content

incendium.db.InParam

César Román edited this page Apr 30, 2024 · 5 revisions

Class InParam

Description

Class used for declaring INPUT parameters.

Syntax

InParam(name_or_index, type_code, value)

Args:

  • name_or_index (object): Index (int starting at 1, not 0), or name (str).
  • type_code (int): Type code constant from system.db.
  • value (object): Value of type type_code.

Recommendations

Create a list of InParam when calling incendium.db functions.

Code Examples

See incendium.db.execute_non_query.

Clone this wiki locally