I tried to use:
SELECT DISTINCT * INTO OUTFILE "/result.txt" FIELDS TERMINATED BY ';' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY "\n" FROM MailingList
to save my "mailingList" table into "result.txt" file...
I am using this through PHP, and am getting an error: "Error: 1045: Access denied for user: 'username@%' (Using password: YES)"
I'm not sure why it won't grant access, there are other things on the page that are reading and writing to the table and connecting fine with hte username/pw.
I know this isn't the PHP forum, but was curious if the code above will get my desired outcome. Please let me know, thanks.