| OracleStoredProcedureAddDateTimeParameter Method |
Adds a date and time 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 AddDateTimeParameter(
string name,
DateTime value,
StoredProcedureParameterType direction
)
Public Overrides Function AddDateTimeParameter (
name As String,
value As DateTime,
direction As StoredProcedureParameterType
) As Boolean
public:
virtual bool AddDateTimeParameter(
String^ name,
DateTime value,
StoredProcedureParameterType direction
) override
abstract AddDateTimeParameter :
name : string *
value : DateTime *
direction : StoredProcedureParameterType -> bool
override AddDateTimeParameter :
name : string *
value : DateTime *
direction : StoredProcedureParameterType -> bool
Parameters
- name
- Type: SystemString
The name of the parameter to add. - value
- Type: SystemDateTime
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.
Implements
IStoredProcedureAddDateTimeParameter(String, DateTime, StoredProcedureParameterType)See Also