DataTable 轉成字符串數組


 private static string[] autoCompleteWordList = null;
      public string[] GetCompleteDepart(int count,string sql,string filed)
      {
          if (count == 0)
          {
              count = 10;
          }
          //如果數組為空

          
          DataSet ds = new CommonDAO().ReturnDataSet(sql);//數據集
          //填充數組
          string[] temp = new string[ds.Tables[0].Rows.Count];
          int i = 0;
          foreach (DataRow dr in ds.Tables[0].Rows)
          {
              temp[i] = dr[filed].ToString();//字段
              i++;
          }
          //將臨時數組的內容賦給返回數組
          autoCompleteWordList = temp;

          string[] returnValue = new string[count];
          returnValue = autoCompleteWordList;
          //返回
          return returnValue;
      }    

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM