| IStoredProcedureAddDateTimeParameter Method |
Adds a date and time 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 AddDateTimeParameter(
string name,
DateTime value,
StoredProcedureParameterType direction
)
Function AddDateTimeParameter (
name As String,
value As DateTime,
direction As StoredProcedureParameterType
) As Boolean
bool AddDateTimeParameter(
String^ name,
DateTime value,
StoredProcedureParameterType direction
)
abstract 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.
See Also