I am using Python SQLAlchemy cx_Oracle. And I am storing a string like this
"1 Some Road\nSome Place\nSome City"
into a db.Text field. But after saving it to it, what I get back is:
"1 Some RoadSome PlaceSome City"
So, do you know who has eaten my "\n"s? Please help me out
Cheers