Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread BIG script parameters
Sun, Mar 2 2008 8:39 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Tim

VARCHAR's are limited to 512 characters so I guess if I need a larger parameter than that I'd need to use a CLOB and from my quick experiment it seems that all I need to do is alter the parameter type. Is it really that simple?

Roy Lambert
Mon, Mar 3 2008 7:22 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Roy,

<< VARCHAR's are limited to 512 characters so I guess if I need a larger
parameter than that I'd need to use a CLOB and from my quick experiment it
seems that all I need to do is alter the parameter type. Is it really that
simple? >>

Actually it's simpler than that - VARCHARs really don't have a limit for
parameters and variables in SQL/PSM. Smiley The limit only applies to columns.
Also, in case you didn't know, you can just declare a VARCHAR parameter or
variable as simply VARCHAR with no length specifier, and it will behave just
like a String declaration in Delphi.

--
Tim Young
Elevate Software
www.elevatesoft.com

Mon, Mar 3 2008 7:46 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Tim

<<and it will behave just
>like a String declaration in Delphi.>>

THAT BIT I didn't know - thanks.

Roy Lambert
Image