扫一扫
分享文章到微信

扫一扫
关注官方公众号
至顶头条
public bool NextResult() 
{ 
if( myRows == null || (intRowIndex+1) >= myRows.Count ) 
return false; 
else 
return true; 
} 
/// 
/// 已重载:关闭对象 
/// 
public void Close() 
{ 
bolClosed = true; 
strHead = null; 
myRows = null; 
} 
/// 
/// 移动当前记录到下一行 
/// 
/// 
public bool Read() 
{ 
intRowIndex ++ ; 
if( intRowIndex >= myRows.Count ) 
return false; 
else 
return true; 
} 
/// 
/// 已重载:不支持 
/// 
public int Depth 
{ 
get{ return 0; } 
} 
/// 
/// 已重载:不支持 
/// 
/// 
public System.Data.DataTable GetSchemaTable() 
{ 
// TODO: 添加 XMLHttpReader.GetSchemaTable 实现 
return null; 
} 
#endregion 
#region IDisposable 成员 
public void Dispose() 
{ 
// TODO: 添加 XMLHttpReader.Dispose 实现 
} 
#endregion 
#region IDataRecord 成员 
/// 
/// 已重载:获得指定列号的整数型数据 
/// 
/// 从0开始的列号 
/// 转换成功的整形数据 
public int GetInt32(int i) 
{ 
return Convert.ToInt32( this.GetString(i)); 
} 
/// 
/// 获得指定列名的数据 
/// 
publ 
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。