@@ -445,14 +445,15 @@ def o_execute_non_query(
445
445
446
446
Args:
447
447
stored_procedure: The name of the stored procedure to execute.
448
- out_params: A Dictionary containing all OUTPUT parameters.
448
+ out_params: A list containing all OUTPUT parameters as OutParam
449
+ objects.
449
450
database: The name of the database connection to execute
450
451
against. If omitted or "", the project's default database
451
452
connection will be used. Optional.
452
453
transaction: A transaction identifier. If omitted, the call will
453
454
be executed in its own transaction. Optional.
454
- in_params: A Dictionary containing all INPUT parameters.
455
- Optional.
455
+ in_params: A list containing all INPUT parameters as InParam
456
+ objects. Optional.
456
457
457
458
Returns:
458
459
A tuple containing the number of rows modified by the stored
@@ -482,12 +483,13 @@ def o_get_data(
482
483
483
484
Args:
484
485
stored_procedure: The name of the stored procedure to execute.
485
- out_params: A Dictionary containing all OUTPUT parameters.
486
+ out_params: A list containing all OUTPUT parameters as OutParam
487
+ objects.
486
488
database: The name of the database connection to execute
487
489
against. If omitted or "", the project's default database
488
490
connection will be used. Optional.
489
- in_params: A Dictionary containing all INPUT parameters.
490
- Optional.
491
+ in_params: A list containing all INPUT parameters as InParam
492
+ objects. Optional.
491
493
492
494
Returns:
493
495
A tuple containing a Dataset that is the resulting data of the
0 commit comments