| StoredProcedure.AddInt32Parameter Method |
Adds a 32-bit integer parameter to the procedure.
Namespace:
Galactic.Sql
Assembly:
Galactic.Sql (in Galactic.Sql.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public abstract bool AddInt32Parameter(
string name,
Nullable<int> value,
StoredProcedure.ParameterType direction
)
Public MustOverride Function AddInt32Parameter (
name As String,
value As Nullable(Of Integer),
direction As StoredProcedure.ParameterType
) As Boolean
public:
virtual bool AddInt32Parameter(
String^ name,
Nullable<int> value,
StoredProcedure.ParameterType direction
) abstract
abstract AddInt32Parameter :
name : string *
value : Nullable<int> *
direction : StoredProcedure.ParameterType -> bool
Parameters
- name
- Type: System.String
The name of the parameter to add. - value
- Type: System.Nullable<Int32>
The value of the parameter to add. - direction
- Type: Galactic.Sql.StoredProcedure.ParameterType
The direction of the parameter. Use one of the class parameter constants.
Return Value
Type:
BooleanTrue if the parameter is added, false otherwise.
Implements
IStoredProcedure.AddInt32Parameter(String, Nullable<Int32>, StoredProcedure.ParameterType)See Also