C# SQL语句查询出来的字段放入数组中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# SQL语句查询出来的字段放入数组中相关的知识,希望对你有一定的参考价值。
string strSql = "Select 颜色名称 From 颜色表";
string[] str名称数组 = new string[];
我想把Sql语句中查询出来的"颜色名称"字段里面的数据,
放入数组"str名称数组"里面?
怎么放?
for(int i=0;i<dt.Rows.Count;i++)
str[i]=dt.Rows[i]["颜色名称"].toString();
参考技术A 假设SELECT后的结果集为rd
int i=0;
while(rd.read())
str[i]=rd["颜色名字"].toString();
i++;
以上是关于C# SQL语句查询出来的字段放入数组中的主要内容,如果未能解决你的问题,请参考以下文章