本文介绍了我怎样才能从表中只读取特定的行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

列表< string> sList =  new  List< string>(); 
使用(IDataReader _data = dal.ExecuteReader(command))
{
if (_ data!= null
{
while (_data .Read())
{
sList.Add(Convert.ToString(_data [ Configkey ]));
}



// Configkey - 列名

// slist将拥有表列中的所有行现在我只需要设置具体的价值观。我怎样才能得到它们。

解决方案

List<string> sList = new List<string>(); 
using (IDataReader _data = dal.ExecuteReader(command))
                       {
                         if(_data !=null)
                           {
                           while (_data.Read())
                           {
                              sList.Add(Convert.ToString(_data["Configkey"]));
}


//Configkey - column name
// slist will have all the rows from table column now I need only set of particular values. How can I get them.

解决方案


这篇关于我怎样才能从表中只读取特定的行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 05:10