I'm wanting to save and retreive text from a multiline textbox which I've
been told can become extremely large and I'm not sure how this is to be
done(c#).

I'm guessing SqlServers Text type is ok and some kind of chunking of the
lines in the textbox. Any pointers will be greatly appreciated.

Thanks.
Steve.

Re: Large Text. by Miha

Miha
Wed Feb 01 09:31:27 CST 2006

Hi,

No need for chunking. Just define parameter type as SqlDbType.Text and pass
a string value.

--
Miha Markic [MVP C#]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/

"Steve" <steve_turton@lineone.net> wrote in message
news:uzK7MB0JGHA.500@TK2MSFTNGP15.phx.gbl...
> I'm wanting to save and retreive text from a multiline textbox which I've
> been told can become extremely large and I'm not sure how this is to be
> done(c#).
>
> I'm guessing SqlServers Text type is ok and some kind of chunking of the
> lines in the textbox. Any pointers will be greatly appreciated.
>
> Thanks.
> Steve.
>



Re: Large Text. by Steve

Steve
Wed Feb 01 17:10:56 CST 2006

Thanks, a bit of overthought on my part.
Steve.

"Miha Markic [MVP C#]" <miha at rthand com> wrote in message
news:uK8OSS0JGHA.524@TK2MSFTNGP09.phx.gbl...
> Hi,
>
> No need for chunking. Just define parameter type as SqlDbType.Text and
> pass a string value.
>
> --
> Miha Markic [MVP C#]
> RightHand .NET consulting & development www.rthand.com
> Blog: http://cs.rthand.com/blogs/blog_with_righthand/
>
> "Steve" <steve_turton@lineone.net> wrote in message
> news:uzK7MB0JGHA.500@TK2MSFTNGP15.phx.gbl...
>> I'm wanting to save and retreive text from a multiline textbox which I've
>> been told can become extremely large and I'm not sure how this is to be
>> done(c#).
>>
>> I'm guessing SqlServers Text type is ok and some kind of chunking of the
>> lines in the textbox. Any pointers will be greatly appreciated.
>>
>> Thanks.
>> Steve.
>>
>
>