1. DataGridView控件——加载数据
using System; using System.Data; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace Test03 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } SqlConnection conn; //定义连接对象变量 SqlDataAdapter adapter; //定义适配器变量 int intindex = 0; //定义点击时的行索引值 private void button1_Click(object sender, EventArgs e) { conn = new SqlConnection("server=MRC-8CF94303A82\\MRNET;database=db_16;uid=sa;pwd=111"); //创建数据库连接 SqlDataAdapter sda = new SqlDataAdapter("select * from tb_emp",conn); //创建适配器对象 DataSet ds = new DataSet(); //创建数据集,相当于内存中的小型数据库 sda.Fill(ds); //将数据填充到数据集中 dataGridView1.DataSource = ds.Tables[0]; dataGridView1.RowHeadersVisible = false; for (int i = 0; i < dataGridView1.ColumnCount;i++ ) { dataGridView1.Columns[i].Width = 84; } button1.Enabled = false; dataGridView1.Columns[0].ReadOnly = true; } private DataTable dbconn(string strSql) { if (conn.State == ConnectionState.Open) conn.Close(); this.adapter = new SqlDataAdapter(strSql, conn); DataTable dtSelect = new DataTable(); int rnt = this.adapter.Fill(dtSelect); return dtSelect; } private void button2_Click(object sender, EventArgs e) { if (dbUpdate()) { MessageBox.Show("修改成功!"); } } private Boolean dbUpdate() { string strSql = "select * from tb_emp"; DataTable dtUpdate = new DataTable(); dtUpdate = this.dbconn(strSql); DataTable dtShow = new DataTable(); dtShow = (DataTable)this.dataGridView1.DataSource; dtUpdate.ImportRow(dtShow.Rows[intindex]); SqlCommandBuilder CommandBuiler; CommandBuiler = new SqlCommandBuilder(this.adapter); this.adapter.Update(dtUpdate); dtUpdate.AcceptChanges(); return true; } private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) { intindex = e.RowIndex; //通过e获取行索引 } } }
标签:控件,using,System,DataGridView,dataGridView1,SQL,new,DataTable,conn From: https://www.cnblogs.com/automationanywhere/p/17379859.html