Invalid attempt to Read when reader is closed

前端 未结 3 1047
失恋的感觉
失恋的感觉 2021-01-26 07:35

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.

Thanks for

相关标签:
3条回答
  • 2021-01-26 08:12

    The using block closes the connection here (on exit)

    using (mysqlCommand = new MySqlCommand(query, mysqlConnection))
    
    0 讨论(0)
  • 2021-01-26 08:22

    If I'm not mistaken, it's the using statement that is killing the reader. Once the using block is terminated, IDisposable will fire on your MySQLConnection, closing and disposing your connection to the database.

    0 讨论(0)
  • 2021-01-26 08:36

    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.

    0 讨论(0)
提交回复
热议问题