本文介绍了如何按列名由SqlDataReader.GetValue获取数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用SqlDataReader.GetValue方法从数据库读取值:

  Log.WriteLine(公司名称列的值: + thisReader.GetValue(1)); 



作为参数的GetValue获得列的索引。
我怎么可以指定列名,而不是指数?


解决方案

  Log.WriteLine (公司名称列的值:+ thisReader [公司名称]); 


I use SqlDataReader.GetValue method to read values from DB:

Log.WriteLine("Value of CompanyName column:" + thisReader.GetValue(1)); 

As parameter GetValue get index of column.How could I specify Column Name instead index?

解决方案
Log.WriteLine("Value of CompanyName column:" + thisReader["CompanyName"]); 

这篇关于如何按列名由SqlDataReader.GetValue获取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 11:43