How to linebreak long string constructs ?
- by iFloh
I am editing SQLite SQL statements of substantial length.
How can I break these into several lines to allow comfortablt editing?
const char *sql = "SELECT arguments arguments arguments arguments arguments arguments arguments arguments arguments arguments FROM a, b, WHERE condition condition condition condition condition condition condition"
into
const char *sql = "SELECT arguments arguments arguments arguments arguments
arguments arguments arguments arguments arguments
FROM a, b
WHERE condition condition condition"
cheers