| OracleStoredProcedureAddInt64Parameter Method |
Adds a 64-bit integer parameter to the procedure.
Namespace:
Galactic.Sql.Oracle
Assembly:
Galactic.Sql.Oracle (in Galactic.Sql.Oracle.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public override bool AddInt64Parameter(
string name,
Nullable<long> value,
StoredProcedureParameterType direction
)
Public Overrides Function AddInt64Parameter (
name As String,
value As Nullable(Of Long),
direction As StoredProcedureParameterType
) As Boolean
public:
virtual bool AddInt64Parameter(
String^ name,
Nullable<long long> value,
StoredProcedureParameterType direction
) override
abstract AddInt64Parameter :
name : string *
value : Nullable<int64> *
direction : StoredProcedureParameterType -> bool
override 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. Defaults to IN.
Return Value
Type:
BooleanTrue if the parameter is added, false otherwise.
Implements
IStoredProcedureAddInt64Parameter(String, NullableInt64, StoredProcedureParameterType)See Also