Hi,
here I am giving syntax..
.Parameters.Append cmd.CreateParameter("EndDate",adDate, adParamInput, 8, "10/10/2004")
Here
EndDate : varaiable name that is there in tha database.
adDate: Type
adParamInput: input type
8 is the size
"10/10/2004" is the value.
similarly
.Parameters.Append cmd.CreateParameter("ID", adInteger, adParamInput, 4 ,1000)
Thanks
Suresh
|