The Size property sets or returns a long value that indicates the maximum size in bytes or characters of a value in a Parameter object. S...
The Size property sets or returns a long value that indicates the maximum size in bytes or characters of a value in a Parameter object.
Syntax
objparameter.Size |
Example
<% set comm=Server.CreateObject("ADODB.Command") set para=Server.CreateObject("ADODB.Parameter") para.Type=adVarChar para.Size=25 para.Direction=adParamInput para.Value=varfname comm.Parameters.Append para %> |
Goto ADO Parameter Object complete list