SqlDataAdapter adapter = new SqlDataAdapter(SelectSql,conn);
DataSet ds = new DataSet(); 
adapter.Fill(ds,"LogAccount");
DataTable DT = ds.Tables["LogAccount"];

总记录数为:DT.Rows.Count

相关文章:

  • 2021-12-26
  • 2021-09-25
  • 2021-08-09
  • 2022-01-31
  • 2021-07-20
  • 2022-12-23
猜你喜欢
  • 2021-09-27
  • 2022-12-23
  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2022-02-01
相关资源
相似解决方案