本文介绍了Datareader Error:读取器关闭时无效尝试调用Read。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 你好朋友, 我使用datareader.read()方法创建了一个只从db读取数据的函数。它给了我错误:读取器关闭时无效尝试调用Read。 我的代码片段如下: public int ReturnInt( string str) { try { if (con.State == ConnectionState.Open) { con.Close(); } con.Open(); cmd = new SqlCommand(str,con); rd = cmd.ExecuteReader(); if (rd.Read()) { return (Convert.ToInt32(rd [ 0 ])); } } catch {} 最后 {con.Close();} return 0 ; } 私有 void Form_Load( object sender,EventArgs e) { ReturnInt( 从表名中选择计数(*))} 错误发生在rd.Read( )。 告诉我为什么会出现这个错误以及解决方案是什么。 谢谢&安培;此致, Sonal Patel 解决方案 Hello friends,I have made one function to just read data from db using datareader.read() method. It gives me error: "Invalid attempt to call Read when reader is closed."My code snippet as below:public int ReturnInt(string str){try{if (con.State == ConnectionState.Open){con.Close();}con.Open();cmd = new SqlCommand(str, con);rd = cmd.ExecuteReader();if (rd.Read()){return (Convert.ToInt32(rd[0]));}}catch{}finally{con.Close();}return 0;}private void Form_Load(object sender, EventArgs e){ReturnInt("select count(*) from tablename")}Error is coming on rd.Read().Tell me why this error is generating and what is the solution for that.Thanks & Regards,Sonal Patel 解决方案 这篇关于Datareader Error:读取器关闭时无效尝试调用Read。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-18 23:45