Mysql – Use @ literal in SQL command text
I want to change a password for a user in MySQL which requires @ symbol. However, C# SQL command uses that as a parameter holder and because of that the following command fails. command.CommandText = $"ALTER USER '{user}'@'%' IDENTIFIED BY…