Latest

recent

ADO Size Property-Parameter Object


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
ADO Size Property-Parameter Object Reviewed by 1000sourcecodes on 00:32 Rating: 5
Powered by Blogger.