我的网站显示错误
我的网站显示此错误,
您也可以在线检查它仅访问 4 到 5 个页面,然后 http://www.pakcarid.com /
System.Data.OleDb.OleDbException:超出系统资源。
源错误:
Line 267: OleDbDataAdapter dtt = new OleDbDataAdapter(tot);
Line 268: DataSet dstt = new DataSet();
Line 269: dtt.Fill(dstt);
Line 270:
Line 271: this.totalview.Text = dstt.Tables[0
谁能告诉我如何解决它
my site show this error
you can also check online it visit only 4 to 5 pages then http://www.pakcarid.com/
System.Data.OleDb.OleDbException: System resource exceeded.
Source Error:
Line 267: OleDbDataAdapter dtt = new OleDbDataAdapter(tot);
Line 268: DataSet dstt = new DataSet();
Line 269: dtt.Fill(dstt);
Line 270:
Line 271: this.totalview.Text = dstt.Tables[0
can any one tell my how to solve it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您要关闭 DataAdapter 吗?您需要显式调用
dtt.Close()
或使用using
块(它们是 IDisposable):等等。 Close() 在这里是多余的,因为
using
块将调用dtt.Dispose()
但我更喜欢将其保留。大多数 ADO.NET 对象都是 IDisposable;虽然我怀疑其中一些是否重要,无论您是否关闭并处置它们(例如命令),但我希望数据适配器、连接等会这样做。
Are you closing your DataAdapters? You need to either explicitly call
dtt.Close()
or useusing
blocks (they're IDisposable):etc. The Close() is redundant here because the
using
block will calldtt.Dispose()
but I prefer to leave it in anyway.Most ADO.NET objects are IDisposable; whereas I doubt some of these matter whether you close and dispose them or not (e.g. Commands) I expect DataAdapters, connections, etc. do.