Large Text.

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

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.
 
Hi,

No need for chunking. Just define parameter type as SqlDbType.Text and pass
a string value.
 
Thanks, a bit of overthought on my part.
Steve.

Miha Markic said:
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 said:
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top