DataGridView显示数据库数据

作者:追风剑情 发布于:2018-5-5 21:06 分类:C#

示例代码

数据库辅助类


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Data.SQLite;
  7.  
  8. namespace Test7
  9. {
  10. public class SqliteHelper
  11. {
  12. private SQLiteConnection dbConnection;
  13. private SQLiteCommand dbCommand;
  14. private SQLiteDataReader dataReader;
  15.  
  16. /// <summary>
  17. /// 连接数据库
  18. /// </summary>
  19. /// <param name="connectionString">例如: "data source=mydb.db"</param>
  20. public bool Connect(string db_path)
  21. {
  22. try
  23. {
  24. //如果db文件不存在,会自动创建一个新的db文件
  25. string connectionString = string.Format("data source={0}", db_path);
  26. dbConnection = new SQLiteConnection(connectionString);
  27. dbConnection.Open();
  28. return true;
  29. }
  30. catch (Exception e)
  31. {
  32. Log(e.ToString());
  33. }
  34. return false;
  35. }
  36.  
  37. //执行SQL: 查
  38. public SQLiteDataReader ExecuteQuery(string sql)
  39. {
  40. try
  41. {
  42. dbCommand = dbConnection.CreateCommand();
  43. dbCommand.CommandText = sql;
  44. dataReader = dbCommand.ExecuteReader();
  45. }
  46. catch (Exception e)
  47. {
  48. Log(e.Message);
  49. }
  50.  
  51. return dataReader;
  52. }
  53.  
  54. //执行SQL:增、删、改操作
  55. public int ExecuteNonQuery(string sql)
  56. {
  57. int result_code = -1;
  58. try
  59. {
  60. dbCommand = dbConnection.CreateCommand();
  61. dbCommand.CommandText = sql;
  62. result_code = dbCommand.ExecuteNonQuery();
  63. }
  64. catch (Exception e)
  65. {
  66. Log(e.Message);
  67. }
  68.  
  69. return result_code;
  70. }
  71.  
  72. public void Close()
  73. {
  74. if (dbCommand != null)
  75. {
  76. dbCommand.Cancel();
  77. }
  78. dbCommand = null;
  79.  
  80. if (dataReader != null)
  81. {
  82. dataReader.Close();
  83. }
  84. dataReader = null;
  85.  
  86. if (dbConnection != null)
  87. {
  88. dbConnection.Close();
  89. }
  90. dbConnection = null;
  91. }
  92.  
  93. static void Log(string s)
  94. {
  95. Console.WriteLine("SqliteHelper: {0}", s);
  96. }
  97. }
  98. }


-------


  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.IO;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using System.Data.SQLite;
  12.  
  13. namespace Test7
  14. {
  15. public partial class Form1 : Form
  16. {
  17. private SqliteHelper db;
  18.  
  19. public Form1()
  20. {
  21. InitializeComponent();
  22. Init();
  23. }
  24.  
  25. private void Init()
  26. {
  27. bool success = ConnectDB();
  28. if (!success)
  29. return;
  30. //CreateTable();
  31. /*
  32. InsertRecord(0, "阿宝1", 1, 0);
  33. InsertRecord(1, "阿宝2", 0, 1);
  34. InsertRecord(0, "阿宝3", 1, 2);
  35. InsertRecord(1, "阿宝4", 0, 3);
  36. InsertRecord(1, "阿宝5", 1, 4);
  37. InsertRecord(0, "阿宝6", 1, 5);
  38. */
  39. RefreshDataGridView();
  40. }
  41.  
  42. private bool ConnectDB()
  43. {
  44. string db_path = Environment.CurrentDirectory + "\\info.db";
  45. Console.WriteLine(db_path);
  46.  
  47. db = new SqliteHelper();
  48. bool success = db.Connect(db_path);
  49. if (!success){
  50. MessageBox.Show("连接数据库失败!");
  51. }
  52. Console.WriteLine("Connect: {0}", success);
  53. return success;
  54. }
  55.  
  56. private void CreateTable()
  57. {
  58. string sql = "CREATE TABLE IF NOT EXISTS user_info(row_id INTEGER PRIMARY KEY AUTOINCREMENT, sex INT, name TEXT, married INT, city INT, reg_date CURRENT_TIMESTAMP)";
  59. int result_code = db.ExecuteNonQuery(sql);
  60. Console.WriteLine("Create table>> result_code={0}", result_code);
  61. }
  62.  
  63. private void InsertRecord(int sex, string name, int married, int city)
  64. {
  65. string sql = string.Format(
  66. "INSERT INTO user_info(sex, name, married, city, reg_date) VALUES({0}, '{1}', {2}, {3}, CURRENT_TIMESTAMP)",
  67. sex, name, married, city);
  68. int result_code = db.ExecuteNonQuery(sql);
  69. Console.WriteLine("Inert value>> result_code={0}", result_code);
  70. }
  71.  
  72. private void RefreshDataGridView()
  73. {
  74. //设置列标题居中显示
  75. this.dataGridView1.ColumnHeadersDefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
  76. //禁用自动增加编辑行
  77. this.dataGridView1.AllowUserToAddRows = false;
  78.  
  79. string sql_query = "SELECT * FROM 'user_info'";
  80. SQLiteDataReader reader = db.ExecuteQuery(sql_query);
  81. DataGridViewComboBoxCell comboxCell;
  82. while (reader.Read())
  83. {
  84. //逐行读取数据库中记录
  85. int row_id = reader.GetInt32(reader.GetOrdinal("row_id"));
  86. int sex = reader.GetInt32(reader.GetOrdinal("sex"));
  87. string name = reader.GetString(reader.GetOrdinal("name"));
  88. int city = reader.GetInt32(reader.GetOrdinal("city"));
  89. bool married = reader.GetBoolean(reader.GetOrdinal("married"));
  90. string reg_date = reader.GetString(reader.GetOrdinal("reg_date"));
  91. //将数据插入DataGridView控件中
  92. int index = this.dataGridView1.Rows.Add();
  93. this.dataGridView1.Rows[index].Cells["row_id"].Value = row_id;
  94. this.dataGridView1.Rows[index].Cells["sex"].Value = sex;
  95. this.dataGridView1.Rows[index].Cells["name"].Value = name;
  96. this.dataGridView1.Rows[index].Cells["married"].Value = married;
  97. comboxCell = this.dataGridView1.Rows[index].Cells["city"] as DataGridViewComboBoxCell;
  98. comboxCell.Value = comboxCell.Items[city];
  99. this.dataGridView1.Rows[index].Cells["link"].Value = "http://www.baidu.com";
  100. this.dataGridView1.Rows[index].Cells["reg_date"].Value = reg_date;
  101. }
  102. }
  103. }
  104. }


运行测试

11111.png


示例:采用数据绑定方式

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.IO;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using System.Data.SQLite;
  12.  
  13. namespace Test7
  14. {
  15. public partial class Form1 : Form
  16. {
  17. private SqliteHelper db;
  18.  
  19. public Form1()
  20. {
  21. InitializeComponent();
  22. Init();
  23. }
  24.  
  25. private void Init()
  26. {
  27. bool success = ConnectDB();
  28. if (!success)
  29. return;
  30. //CreateTable();
  31. /*
  32. InsertRecord(0, "阿宝1", 1, 0);
  33. InsertRecord(1, "阿宝2", 0, 1);
  34. InsertRecord(0, "阿宝3", 1, 2);
  35. InsertRecord(1, "阿宝4", 0, 3);
  36. InsertRecord(1, "阿宝5", 1, 4);
  37. InsertRecord(0, "阿宝6", 1, 5);
  38. */
  39. RefreshDataGridView();
  40. }
  41.  
  42. private bool ConnectDB()
  43. {
  44. string db_path = Environment.CurrentDirectory + "\\info.db";
  45. Console.WriteLine(db_path);
  46.  
  47. db = new SqliteHelper();
  48. bool success = db.Connect(db_path);
  49. if (!success){
  50. MessageBox.Show("连接数据库失败!");
  51. }
  52. Console.WriteLine("Connect: {0}", success);
  53. return success;
  54. }
  55.  
  56. private void CreateTable()
  57. {
  58. string sql = "CREATE TABLE IF NOT EXISTS user_info(row_id INTEGER PRIMARY KEY AUTOINCREMENT, sex INT, name TEXT, married INT, city INT, reg_date CURRENT_TIMESTAMP)";
  59. int result_code = db.ExecuteNonQuery(sql);
  60. Console.WriteLine("Create table>> result_code={0}", result_code);
  61. }
  62.  
  63. private void InsertRecord(int sex, string name, int married, int city)
  64. {
  65. string sql = string.Format(
  66. "INSERT INTO user_info(sex, name, married, city, reg_date) VALUES({0}, '{1}', {2}, {3}, CURRENT_TIMESTAMP)",
  67. sex, name, married, city);
  68. int result_code = db.ExecuteNonQuery(sql);
  69. Console.WriteLine("Inert value>> result_code={0}", result_code);
  70. }
  71.  
  72. private void RefreshDataGridView()
  73. {
  74. //设置列标题居中显示
  75. this.dataGridView1.ColumnHeadersDefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
  76. //禁用自动增加编辑行
  77. this.dataGridView1.AllowUserToAddRows = false;
  78.  
  79. string sql_query = "SELECT * FROM 'user_info'";
  80. SQLiteDataReader reader = db.ExecuteQuery(sql_query);
  81. List<UserInfo> dataSource = new List<UserInfo>();
  82. while (reader.Read())
  83. {
  84. //逐行读取数据库中记录
  85. int row_id = reader.GetInt32(reader.GetOrdinal("row_id"));
  86. int sex = reader.GetInt32(reader.GetOrdinal("sex"));
  87. string name = reader.GetString(reader.GetOrdinal("name"));
  88. int city = reader.GetInt32(reader.GetOrdinal("city"));
  89. bool married = reader.GetBoolean(reader.GetOrdinal("married"));
  90. string reg_date = reader.GetString(reader.GetOrdinal("reg_date"));
  91.  
  92. UserInfo userInfo = new UserInfo()
  93. {
  94. row_id = row_id,
  95. sex = sex,
  96. name = name,
  97. city = city,
  98. married = married,
  99. reg_date = reg_date
  100. };
  101. dataSource.Add(userInfo);
  102. }
  103.  
  104. //绑定数据源
  105. this.dataGridView1.DataSource = dataSource;
  106. }
  107. }
  108.  
  109. /// <summary>
  110. /// DataSource
  111. /// DataGridView.DataSource只能绑定属性(即seter;geter)
  112. /// DataPropertyName要与属性名对应
  113. /// </summary>
  114. public class UserInfo
  115. {
  116. public int row_id { get; set; }
  117. public int sex;
  118. public string name { get; set; }
  119. public int city;
  120. public bool married { get; set; }
  121. public string link{
  122. get { return "http://www.baidu.com"; }
  123. }
  124.  
  125. public string reg_date { get; set; }
  126.  
  127. public string sex_value
  128. {
  129. get
  130. {
  131. return sex == 0 ? "女" : "男";
  132. }
  133. }
  134.  
  135. public string city_value
  136. {
  137. get
  138. {
  139. string[] city_names = new string[]{
  140. "成都","重庆","绵阳","广汉","宜宾","绵竹","北京"
  141. };
  142. return city_names[city];
  143. }
  144. }
  145. }
  146. }
1111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号