Hi there,
The line break is represented as \n in text format and this will be saved as is in your database. You don't see it (well you do, in a form of line break), but try replacing this thing with <br /> when you output it as HTML. Use str_replace() for this job. It's fast.
HTH.