zoukankan      html  css  js  c++  java
  • (转)得到数据库中的某一列的所有值并将其存到数组中

    SqlConnection SqlConn = new SqlConnection("Server=.;Trusted_Connection=YES;DataBase=daigoudian");//创建数据库链接到daigoudian

            public void get_idstr(string[] str)
            {
                SqlDataAdapter Sqa = new SqlDataAdapter("Select id from daigoudian", SqlConn);
                DataSet ds = new DataSet();
                Sqa.Fill(ds);
                for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
                {
                    DataRow dr = ds.Tables[0].Rows[i];//得到行数据集,实际是个数组……
                    str[i] = dr.ItemArray[0].ToString();
                }
            }//获取所有列id 的值并存入数组str中

  • 相关阅读:
    IO流
    简单JSON
    开发流程
    命名规范
    策略模式
    Git的使用
    Markdown的使用
    代理模式
    装饰者模式
    POJ 2976 3111(二分-最大化平均值)
  • 原文地址:https://www.cnblogs.com/jinqier/p/3413656.html
Copyright © 2011-2022 走看看