Click or drag to resize
Galactic API

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
)

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