DataGridView直接修改数据操作
DataGridView单元格进⼊编辑模式的⽅法:
双击或者f2:
EditCellOnEnter 属性设为True,对DataGridView进⾏配置,当⽤户移动到该单元格后,该单元格可⽴即切换到编辑模式。
ESC取消编辑,如果将EditCellEnter属性设置为True,则单元格仍将处于编辑模式,但是所有更改都将被放弃,要提交更改,⽤户只须移动到新的单元格,或者叫焦点(focus)切换到其他控件。
为了防⽌单元格被编辑,⽤户可以设置
DataGridViewCell、DataGridViewColumn·1DataGridViewRow或DataGridView的ReadOnly属性(取决于⽤户要限定更改的内容)
要在DataGridView控件中修改数据,可通过CellValueChanged事件来完成
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Data;
namespace DataGridView直接修改数据
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
dataGridView1.DataSource = outvalue();
}
private DataTable outvalue() //⽤Fill(Datatable)⽅法的返回值不能是Dataset了
{
string constr = "server=192.168.100.222;user=sa;pwd=p@ssw1rd;database=pwd1";
SqlConnection mycon = new SqlConnection(constr);
DataTable mytable = new DataTable(); //定义⼀个datatable 数据表
try
{
mycon.Open();
SqlDataAdapter mydpt = new SqlDataAdapter("select * from book",mycon);
mydpt.Fill(mytable); //DataAdapter 有多种重载⽅式,也可以直接写datatable
dataGridView1.EditMode = DataGridViewEditMode.EditOnF2; //点击编辑单元格
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
mycon.Close();
提交更改是什么}
return mytable;
}
private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e) //为DataGridView创建⼀个单元格值改变事件
{
string constr = "server=192.168.100.222;user=sa;pwd=p@ssw1rd;database=pwd1";
SqlConnection mycon = new SqlConnection(constr);
try
{
mycon.Open();
//定义⼀个字符串str1=表格控件.列【事件获取列的索引】.表头的⽂本+‘=’+单引号+表格控件.当前单元格.值.转换string类型+单引号
//【e.columnIndex】为什么要⽤这个?因为我们要编辑那个⾏的时候,需要⽤到(⽐如数字监控他在bname上)要获取bname的列名字
string str1=dataGridView1.Columns[e.ColumnIndex].HeaderText+"="+"'"+dataGridView1.CurrentCell.Value.ToString()+"'";
/
/定义⼀个字符串str2=表格控件.⾏【事件获取⾏的索引】.单元格【0】.值.转换string类型
//where bid=100005 这个1005怎么获取?【e.RowIndex】获取⾏的索引.因为100005在单元格中第1⾏,(索引器从0开始的0就是1),在获取这个上⾯的值.转换成string类型
string str2=dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString();
//关联str1和str2 执⾏update 的时候就相当于把条件获取string变量上
string sqlupdate = "update book set "+str1+" where bid="+str2;
//为什么⽤sqlcommand,不⽤dataadapter呢?因为SqlCommand下⾯有个⽅法ExecuteNonQuery,它ExecuteNonQuery()不返回任何值,⼀把应⽤于 insert update delete语句中 SqlCommand mycom = new SqlCommand(sqlupdate, mycon);
mycom.ExecuteNonQuery(); //⽤到只能更新的⽅法来交互数据库更新
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
mycon.Close();
}
}
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论