lr.save_int
Saves an integer to a parameter
C#
void lr.save_int ( int value, String param_name );
VB.NET
Sub lr.save_int ( ByVal value As Integer, ByVal param_name As String )
| Example: lr.save_int | String and Parameter Functions |
Arguments
| Name | Comments |
|---|---|
| value | The integer value to assign to the parameter. |
| param_name | The name of the parameter. |
The lr.save_int function saves value to parameter param_name. It creates the parameter if it does not exist.
This function is useful in correlating queries. To determine the value of the parameter, use the lr.eval_int function.
Return Values
No value returned.Parameterization
Standard parameterization is not available for this function.

