internal sqlDataReader(sqlCommand command,CommandBehavior behavior)
{
this._recordsAffected = -1;
this.ObjectID = Interlocked.Increment(ref _objectTypeCount);
this._command = command;
this._commandBehavior = behavior;
if (this._command != null)
{
this._timeoutSeconds = command.CommandTimeout;
this._connection = command.Connection;
if (this._connection != null)
{
this._statistics = this._connection.Statistics;
this._typeSystem = this._connection.TypeSystem;
}
}
this._dataReady = false;
this._MetaDataConsumed = false;
this._hasRows = false;
this._browseModeInfoConsumed = false;
}
@H_301_7@ @H_404_6@难道就不能返回sqlDatareader吗?@H_301_7@ @H_404_6@有人建议改用公共类型Datatable,可以试试。至于sqlDatareader以后再说吧。@H_301_7@ 总结
以上是内存溢出为你收集整理的SqlDataReader未将对象应用设置到对象实例全部内容,希望文章能够帮你解决SqlDataReader未将对象应用设置到对象实例所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)