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.
|
2
|
|
|
|
|
|
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 :) |
||
|
|
|
|
Another way to do this is as such:
That is, simply inserting a like 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, |
|||
|
|
|
|
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 CHAR(13) where you want your line break. Example: DECLARE @text NVARCHAR(100) SET @text = 'This is line 1.' + CHAR(13) + 'This is line 2.' SELECT @text This prints out the following: This is line 1. This is line 2. |
|||
|
|
|
|
|
||
|
|
|
|
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..) |
||
|
|
