In R, how can I import the contents of a multiline text file (containing SQL) to a single string?
The sql.txt file looks like this:
SELECT TOP 100
try paste(sqlString, collapse=" ")
paste(sqlString, collapse=" ")