Missing newlines when querying sqlite text column
I am saving text to a turso sqlite database, if I shell into the db I can see that the newlines have been saved, but whenever I use drizzle orm db.query.table.findMany() I see that the newlines have been stripped. Any idea how to stop this?
For example, using the db shell:
But using drizzle:
Its the same if I use db.run(sql
SELECT * FROM table
)1 Reply
Actually this looks like a libsql client issue to me. Using the underlying db client is returning the same, without preserved newlines