incendium.db.InParam - ignition-devs/incendium GitHub Wiki
Class InParam
- Param
- InParam
Description
Class used for declaring INPUT parameters.
Syntax
InParam(name_or_index, type_code, value)
Args:
- name_or_index (
int
|AnyStr
): Index (int starting at 1, not 0), or name (AnyStr
). - type_code (
int
): Type code constant fromsystem.db
. - value (
Any
): Value of type type_code.
Recommendations
Create a list
of InParam
when calling incendium.db
functions.