c#中 , 我用 dataGridView1控件把access中的数据显示出来了!,,现在 我 想用一个删除其中一行怎么操作
求具体代码,明天交作业!新手啊!被逼无奈!i!,,是用一个按钮点击实现删除!另外想修改其中一个空格里面的数据怎么弄哦,(还是再设置个按钮)...
求具体代码,明天交作业!新手啊!被逼无奈!i!,,是用一个按钮点击实现删除!另外想修改其中一个 空格里面的数据怎么弄哦,(还是再设置个按钮)
展开
3个回答
展开全部
更新和删除的操作,请参考,有问题可联系
public partial class Form1: Form
{
private SqlDataAdapter dataAdapter; // 数据适配器
private DataSet dataSet; // 数据集
private SqlConnection conn = new SqlConnection("server=.;uid=sa;pwd=;database=northwind");
public Form1()
{
InitializeComponent();
}
// 窗体加载时,填充数据集
private void Form1_Load(object sender, EventArgs e)
{
BindProductList();
}
private void BindProductList()
{
// 查询数据库用的 SQL 语句
string sql = "select * from products";
// 创建数据集对象
dataAdapter = new SqlDataAdapter(sql, conn);
// 创建数据集对象
dataSet = new DataSet("MySchool");
// 填充数据集
dataAdapter.Fill(dataSet, "Products");
// 指定 DataGridView 的数据源
dataGridView1.DataSource = dataSet.Tables["Products"];
}
// 关闭窗体
private void btnClose_Click(object sender, EventArgs e)
{
this.Close();
}
// 把修改过的数据提交到数据库
private void btnUpdate_Click(object sender, EventArgs e)
{
// 向用户确认操作
DialogResult result = MessageBox.Show("确实要保存修改吗?","操作提示",MessageBoxButtons.YesNo,MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
// 自动生成用于更新的命令
SqlCommandBuilder builder = new SqlCommandBuilder(dataAdapter);
// 将数据集中修改过的数据,提交到数据库
dataAdapter.Update(dataSet, "Products");
}
}
// 重新填充数据集
private void btnReFresh_Click(object sender, EventArgs e)
{
// 清空原来表中的数据
dataSet.Tables["Products"].Clear();
// 填充数据集
dataAdapter.Fill(dataSet, "Products");
}
private void btnDelete_Click(object sender, EventArgs e)
{
if (dataGridView1.CurrentRow == null || dataGridView1.CurrentRow.IsNewRow)
{
MessageBox.Show("未选中行", "操作提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
if (dataGridView1.CurrentRow.Index < 0)
{
MessageBox.Show("未选中行", "操作提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
int productid = Convert.ToInt32(dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value);
//MessageBox.Show(productid.ToString());
//根据产品id进行删除,这总该自己写了吧
//重新绑定数据
BindProductList();
}
public partial class Form1: Form
{
private SqlDataAdapter dataAdapter; // 数据适配器
private DataSet dataSet; // 数据集
private SqlConnection conn = new SqlConnection("server=.;uid=sa;pwd=;database=northwind");
public Form1()
{
InitializeComponent();
}
// 窗体加载时,填充数据集
private void Form1_Load(object sender, EventArgs e)
{
BindProductList();
}
private void BindProductList()
{
// 查询数据库用的 SQL 语句
string sql = "select * from products";
// 创建数据集对象
dataAdapter = new SqlDataAdapter(sql, conn);
// 创建数据集对象
dataSet = new DataSet("MySchool");
// 填充数据集
dataAdapter.Fill(dataSet, "Products");
// 指定 DataGridView 的数据源
dataGridView1.DataSource = dataSet.Tables["Products"];
}
// 关闭窗体
private void btnClose_Click(object sender, EventArgs e)
{
this.Close();
}
// 把修改过的数据提交到数据库
private void btnUpdate_Click(object sender, EventArgs e)
{
// 向用户确认操作
DialogResult result = MessageBox.Show("确实要保存修改吗?","操作提示",MessageBoxButtons.YesNo,MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
// 自动生成用于更新的命令
SqlCommandBuilder builder = new SqlCommandBuilder(dataAdapter);
// 将数据集中修改过的数据,提交到数据库
dataAdapter.Update(dataSet, "Products");
}
}
// 重新填充数据集
private void btnReFresh_Click(object sender, EventArgs e)
{
// 清空原来表中的数据
dataSet.Tables["Products"].Clear();
// 填充数据集
dataAdapter.Fill(dataSet, "Products");
}
private void btnDelete_Click(object sender, EventArgs e)
{
if (dataGridView1.CurrentRow == null || dataGridView1.CurrentRow.IsNewRow)
{
MessageBox.Show("未选中行", "操作提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
if (dataGridView1.CurrentRow.Index < 0)
{
MessageBox.Show("未选中行", "操作提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
int productid = Convert.ToInt32(dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value);
//MessageBox.Show(productid.ToString());
//根据产品id进行删除,这总该自己写了吧
//重新绑定数据
BindProductList();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询