我使用SqlDataReader.GetValue方法从数据库读取值:
Log.WriteLine("Value of CompanyName column:" + thisReader.GetValue(1));
作为参数GetValue获取列的索引。
如何指定列名而不是索引?
最佳答案
Log.WriteLine("Value of CompanyName column:" + thisReader["CompanyName"]);
关于c# - 如何通过SqlDataReader.GetValue通过列名获取数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8655965/