Click or drag to resize
Galactic API

OracleStoredProcedureAddInt32Parameter Method

Adds a 32-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 AddInt32Parameter(
	string name,
	Nullable<int> value,
	StoredProcedureParameterType direction
)

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. Defaults to IN.

Return Value

Type: Boolean
True if the parameter is added, false otherwise.

Implements

IStoredProcedureAddInt32Parameter(String, NullableInt32, StoredProcedureParameterType)
See Also