Is there anyway I can run an update query to change a column of plain text stored passwords into a column that's md5+salt'ed in msaccess?
I tried this:
UPDATE TableName
SET Pass = CONCAT(MD5(CONCAT('salt', Pass)), ':salt');
But of course it didn't work, if i put the table name first like: users.Pass, then it asks for a file, if I don't it it tells me that access can't find the input table. And also that there's no CONCAT function, which I don't understand at all.
I'm trying to convert an access db to a mysql db to import customers into a magento install and don't have a lot of experience with access. Thanks.