K
Keith G Hicks
I'm trying to run a sql stored procedure where one of the parameters is TEXT
datatype. Through some online research I found that the 2nd parameter in the
line below needs to be adLongVarChar to accomodate the backend's TEXT
datatype. But I have no idea what to put in the "size" parameter position.
I've tried a few kind of at random but get errors on the execute statement
that it's wrong. If I leave it blank it tells me it's not properly defined.
..Parameters.Append .CreateParameter("@FullNoticeText", adLongVarChar,
adParamInput, <WHAT GOES HERE?>, Trim(Me.FullNoticeText))
Can anyone tell me what value I need to use there?
Thanks,
Keith
datatype. Through some online research I found that the 2nd parameter in the
line below needs to be adLongVarChar to accomodate the backend's TEXT
datatype. But I have no idea what to put in the "size" parameter position.
I've tried a few kind of at random but get errors on the execute statement
that it's wrong. If I leave it blank it tells me it's not properly defined.
..Parameters.Append .CreateParameter("@FullNoticeText", adLongVarChar,
adParamInput, <WHAT GOES HERE?>, Trim(Me.FullNoticeText))
Can anyone tell me what value I need to use there?
Thanks,
Keith