当前位置:Gxlcms > 数据库问题 > DataTable && SqlDataReader帮助理解小程序

DataTable && SqlDataReader帮助理解小程序

时间:2021-07-01 10:21:17 帮助过:3人阅读

  1. // 2015/07/08
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Data;
  8. using System.Data.SqlClient;
  9. namespace DataTapleSample
  10. {
  11. class Program
  12. {
  13. static void Main(string[] args)
  14. {
  15. // 通用的专门用来保存数据库中数据的类型
  16. DataTable table = new DataTable();
  17. // 在DataTable 中保存数据之前,必须先定义结构
  18. DataColumn stuid =
  19. //new DataColumn("StuId",System.Type.GetType("System.Int32"));
  20. new DataColumn("StuId",typeof(int));//简写方式和前者等价
  21. DataColumn stuname = new DataColumn("stuName",typeof(string));
  22. DataColumn stuaddress = new DataColumn("stuaddress",typeof(string));
  23. // 创建表的结构
  24. table.Columns.Add(stuid);
  25. table.Columns.Add(stuname);
  26. table.Columns.Add(stuaddress);
  27. // 表的约束
  28. // 主键约束
  29. table.PrimaryKey = new DataColumn[]{stuid};
  30. // 非空约束
  31. // stuaddress.AllowDBNull = false;
  32. // 唯一约束:stuname.Unique;
  33. // 如何在 DataTable 中保存数据
  34. // DataRow 表示保存在 DataTable 中的一行数据
  35. DataRow row = table.NewRow();
  36. // 使用 NewRow 方法创建的行,结构与表是相同的(如下三种方法,建议第一种)
  37. // row[stuid] = 1;
  38. // row[1] = "XXXX";
  39. // row[stuaddress] = "XXXX";
  40. row[stuid] = 7;
  41. row[stuname] = "XX";
  42. row[stuaddress] = "XXX";
  43. // 现在加入到 DataTable 中
  44. table.Rows.Add(row);
  45. // 访问保存在 DataTable 中的数据
  46. foreach (DataRow r in table.Rows)
  47. {
  48. Console.WriteLine("stuid:{0},stuName:{1},stuaddress:{2}",r[0],r[1],r[2]);
  49. }
  50. Console.ReadKey();
  51. }
  52. }
  53. }
  54. //////////////////////////////////////////////////////////////
  55. // next
  56. // 2015/07/08
  57. // DataTable && SqlDataReader
  58. using System;
  59. using System.Collections.Generic;
  60. using System.Linq;
  61. using System.Text;
  62. using System.Threading.Tasks;
  63. using System.Data;
  64. using System.Data.SqlClient;
  65. namespace StuDataTable
  66. {
  67. class Program
  68. {
  69. static void Main(string[] args)
  70. {
  71. // 保存在 DataTable 中
  72. DataTable table = new DataTable();
  73. string connectionString = "server=.;database=BookSample;uid=sa;pwd=123456";
  74. using (SqlConnection connection = new SqlConnection(connectionString))
  75. {
  76. string sql = "select ID,StuName,Phone from students";
  77. SqlCommand cmd = new SqlCommand(sql,connection);
  78. connection.Open();
  79. using (SqlDataReader reader = cmd.ExecuteReader())
  80. {
  81. // 根据查询结果的结构来创建对应的 DataTable
  82. int columnCount = reader.FieldCount; // 查询结果的列数
  83. // 逐列创建
  84. for (int i = 0; i < columnCount; i++)
  85. {
  86. DataColumn column = new DataColumn(
  87. reader.GetName(i),
  88. reader.GetFieldType(i)
  89. );
  90. table.Columns.Add(column);
  91. }
  92. // 逐行从数据库中读取数据
  93. while (reader.Read())
  94. {
  95. DataRow row = table.NewRow();
  96. for (int i = 0; i < columnCount; i++)
  97. {
  98. row[i] = reader[i];
  99. }
  100. table.Rows.Add(row);
  101. }
  102. }
  103. }
  104. // 现在数据库中的数据已经保存到内存中特殊的集合中
  105. foreach (DataRow row in table.Rows)
  106. {
  107. // 将 ID 读取出来
  108. Console.WriteLine(row["ID"]);
  109. }
  110. Console.ReadKey();
  111. }
  112. }
  113. }
  114. /*
  115. 相关阅读:
  116. https://msdn.microsoft.com/zh-cn/library/system.data.datatable.aspx
  117. https://msdn.microsoft.com/zh-cn/library/system.data.sqlclient.sqldatareader.aspx
  118. */

  

DataTable && SqlDataReader帮助理解小程序

标签:

人气教程排行