Since there is no OUTFILE capabilities with Doctrine as far as I can tell, how would one export a query as a CSV file?

In MySQL, for example, the query would be:

SELECT * INTO OUTFILE 'file.csv'
FIELDS TERMINATED BY ',' 
OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n' 
FROM table;

How could the same be done with Doctrine?

link|improve this question

75% accept rate
feedback

1 Answer

In pseudo code, I would to something like:

FETCH records in Doctrine_Core::FETCH_NUM mode
foreach records as record:
    save record in csv using fputcsv

References: fputcsv

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.