| IStoredProcedureAddInt64Parameter Method |
Adds a 64-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 AddInt64Parameter(
string name,
Nullable<long> value,
StoredProcedureParameterType direction
)
Function AddInt64Parameter (
name As String,
value As Nullable(Of Long),
direction As StoredProcedureParameterType
) As Boolean
bool AddInt64Parameter(
String^ name,
Nullable<long long> value,
StoredProcedureParameterType direction
)
abstract AddInt64Parameter :
name : string *
value : Nullable<int64> *
direction : StoredProcedureParameterType -> bool
Parameters
- name
- Type: SystemString
The name of the parameter to add. - value
- Type: SystemNullableInt64
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