Всем привет, скажите плиз, что делать, если пишет "There is already an open DataReader associated with this Connection which must be closed first.". Код вот:
C#:
using (MySqlDataReader readerd = command.ExecuteReader())
{
if (readerd.HasRows)
{
readerd.Read();
account._id = readerd.GetInt32("id");
account._cash = readerd.GetInt32("cash");
account._adminlevel = readerd.GetInt32("adminlevel");
}
}