|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Large Text.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. -- Show quoteMiha Markic [MVP C#] RightHand .NET consulting & development www.rthand.com Blog: http://cs.rthand.com/blogs/blog_with_righthand/ "Steve" <steve_tur***@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. > Thanks, a bit of overthought on my part.
Steve. Show quote "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_tur***@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. >> > > |
|||||||||||||||||||||||