Any ideas?
SELECT * INTO OUTFILE '/home/myacnt/docs/mysqlCSVtest.csv'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '*'
LINES TERMINATED BY '\n'
FROM tbl_property
WHERE managerGroupID = {$managerGroupID}
Error:
Access denied for user 'asdfsdf'@'localhost' (using password: YES)
Try executing this SQL command:
It seems that you are having issues with connecting to the database and not writing to the folder you’re mentioning.
Also, make sure you have granted
FILEto user'asdfsdf'@'localhost'.