I didn't see any similar questions asked on this topic, and I had to research this for something I'm working on right now. Thought I would post the answer for it in case anyone else had the same question.
|
feedback
|
|
| |||
|
feedback
|
|
I found the answer here: http://blog.sqlauthority.com/2007/08/22/sql-server-t-sql-script-to-insert-carriage-return-and-new-line-feed-in-code/ You just concatenate the string and insert a Example:
This prints out the following:
| |||||
feedback
|
|
Another way to do this is as such:
That is, simply inserting a line break in your query while writing it will add the like break to the database. This works in SQL server Management studio and Query Analyzer. I believe this will also work in C# if you use the @ sign on strings.
Regards, | ||||
|
feedback
|
|
Following a Google... Taking the code from the website:
Looks like it can be done by replacing a placeholder with CHAR(13) Good question, never done it myself :) | |||
|
feedback
|
|
This is always cool, because when you get exported lists from, say Oracle, then you get records spanning several lines, which in turn can be interresting for, say, cvs files, so beware. Anyow, Rob's answer is good, but I would advice to use something else than @, try a few more, like §§@@§§ or something, so it will have a chance for some uniqueness. (But still, remember the lengt of the varchar field you are inserting to..) | |||
|
feedback
|
|
I ran across this problem in a medical web app that needs to display individual "records" as lines in an [input type="text"/] element. Inserting CRLFs at the end of each line is exactly the ticket, in this case. THANKS to the posters here (and to StackOverflow!), who saved me a bunch of time! Here's a C# function that prepends a text line to an existing text blob, delimited by CRLFs, and returns a T-SQL expression suitable for INSERT or UPDATE operations. It's got some of our proprietary error handling in it, but once you rip that out, it may be helpful -- I hope so. --Carl
| |||
|
feedback
|