I\'m working on C# and MySql request. I\'m trying to retrieve my datas in my db but I have this error message : Invalid attempt to Read when reader is closed.
Your reader is getting closed because it's wrapped in that using statement. When the command and connection are disposed, so is the reader. You'll need to get the data out before disposing the reader.