Click or drag to resize
Galactic API

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
)

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: Boolean
True if the parameter is added, false otherwise.

Implements

IStoredProcedure.AddInt32Parameter(String, Nullable<Int32>, StoredProcedure.ParameterType)
See Also