sqlkata/querybuilder

Support for `INTO OUTFILE`

Closed this issue · 1 comments

Is the INTO OUTFILE feature currently supported? I could not find this from the current documentation.

What I want to do is like:

SELECT * 
INTO OUTFILE 'c:/some-folder/users-2022-02-10.csv'
FIELDS ENCLOSED BY '"' TERMINATED BY ',' ESCAPED BY '"'
LINES TERMINATED BY '\r\n'
FROM `users`;

No not really, you can use SelectRaw.