3 messages in com.mysql.lists.mysqlOutputting Data
FromSent OnAttachments
Christopher Chamber26 Oct 2004 15:16 
Scott Haneda26 Oct 2004 15:22 
Steve Davies27 Oct 2004 00:42 
Subject:Outputting Data
From:Christopher Chamber (chri@gem-hs.org)
Date:10/26/2004 03:16:08 PM
List:com.mysql.lists.mysql

I have a query:

$QRY = "SELECT * FROM MembersData";

--> Executes fine, no problems.

I have another though:

$DataSet3 = "SELECT * INTO OUTFILE '/www/Export/DataSet3.csv' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '\"' LINES TERMINATED BY '\n' FROM MembersData";

--> This returns an error saying the query is empty.

Any suggestions people...?