| IStoredProcedureAddInt32Parameter 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 bool AddInt32Parameter(
string name,
Nullable<int> value,
StoredProcedureParameterType direction
)
Function AddInt32Parameter (
name As String,
value As Nullable(Of Integer),
direction As StoredProcedureParameterType
) As Boolean
bool AddInt32Parameter(
String^ name,
Nullable<int> value,
StoredProcedureParameterType direction
)
abstract AddInt32Parameter :
name : string *
value : Nullable<int> *
direction : StoredProcedureParameterType -> bool
Parameters
- name
- Type: SystemString
The name of the parameter to add. - value
- Type: SystemNullableInt32
The value of the parameter to add. - direction
- Type: Galactic.SqlStoredProcedureParameterType
The direction of the parameter. Use one of the class parameter constants.
Return Value
Type:
BooleanTrue if the parameter is added, false otherwise.
See Also