c# – 读取数组或列表中的SQL Server列

前端之家收集整理的这篇文章主要介绍了c# – 读取数组或列表中的SQL Server列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如何将sql server数据库中的列中包含的值复制到数组或列表中?
我在Web应用程序项目(ASP.NET)中使用C#…

提前致谢

解决方法

using (sqlConnection cnn = new sqlConnection("server=(local);database=pubs;Integrated Security=SSPI"))  {
 sqlDataAdapter da = new sqlDataAdapter("select name from authors",cnn); 
 DataSet ds = new DataSet(); 
 da.Fill(ds,"authors"); 

 List<string> authorNames = new List<string>();
 foreach(DataRow row in ds.Tables["authors"].Rows)
 {
   authorNames.Add(row["name"].ToString());
 }
}

将作者姓名填入List的非常基本的示例.

原文链接:https://www.f2er.com/csharp/97341.html

猜你在找的C#相关文章