| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 780 人关注过本帖
标题:修改功能
取消只看楼主 加入收藏
yekong34
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2005-11-22
收藏
 问题点数:0 回复次数:6 
修改功能

我这里现在有一个修改功能的代码请大家帮我看一下哪里错误谢谢啊,我现在运行不了?

try
{
this.dataSet11.Clear();


//this.sqlDataAdapter1.UpdateCommand.CommandText="update admin set username='"+this.comboBox1.Text.Trim()+"',password='"+this.comboBox2.Text.Trim()+"'from admin where id='"+this.comboBox3+"'";

string StrSQL="update admin set username='"+this.textBox1.Text.Trim()+"',password='"+this.textBox2.Text.Trim()+"'from admin where id='"+this.textBox3+"'";

this.sqlDataAdapter1.SelectCommand.CommandText=StrSQL;

this.sqlDataAdapter1.UpdateCommand.Connection=this.sqlConnection1;
//打开数据库连接
this.sqlConnection1.Open();
//执行SQL命令
this.sqlDataAdapter1.UpdateCommand.ExecuteNonQuery();
//关闭连接
this.sqlConnection1.Close();
//更新数据库
this.sqlDataAdapter1.Fill(this.dataSet11,"admin");
this.dataGrid1.DataSource=this.dataSet11;
}
catch(Exception Err)
{
MessageBox.Show("查询数据库记录操作失败:"+Err.Message,"信息提示",
MessageBoxButtons.OK,MessageBoxIcon.Information);
//如果打开了连接,则关闭它
if(this.sqlConnection1.State==ConnectionState.Open)
{
this.sqlConnection1.Close();
}
}

搜索更多相关主题的帖子: password update admin 
2006-05-31 15:24
yekong34
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2005-11-22
收藏
得分:0 

你说的不对的,根本就不用加的,你在查询分析器里试试看!

这里的SQL语句没有错误的,主要是C#的执行语句有错误,请高手帮忙了谢谢了!


2006-06-01 20:29
yekong34
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2005-11-22
收藏
得分:0 
不过先谢谢上面的朋友的帮助!

2006-06-01 20:34
yekong34
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2005-11-22
收藏
得分:0 

用不用都可以的


2006-06-01 20:51
yekong34
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2005-11-22
收藏
得分:0 

给我的错误提示是,我的@username未指定参数


2006-06-01 20:52
yekong34
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2005-11-22
收藏
得分:0 
OK,先谢谢你啊,

2006-06-01 21:11
yekong34
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2005-11-22
收藏
得分:0 

我的好使了,好用了,给大家参考学习一下吧,!

我的语句好用的,!


private void button1_Click(object sender, System.EventArgs e)
{


try
{
this.dataSet1.Clear();


string update="Update admin set udname='"+this.comboBox2.Text+"', udpassword='"+this.comboBox3.Text+"' where id='"+this.comboBox1.Text+"'";

SqlCommand comm=new SqlCommand();

comm.CommandText=update;

comm.Connection=this.sqlConnection1;


this.sqlConnection1.Open();

comm.ExecuteNonQuery();

this.sqlConnection1.Close();


//更新数据库
this.sqlDataAdapter1.Fill(this.dataSet1,"admin");
this.dataGrid1.DataSource=this.dataSet1;
}
catch(Exception Err)
{
MessageBox.Show("修改数据库记录操作失败:"+Err.Message,"信息提示",
MessageBoxButtons.OK,MessageBoxIcon.Information);
//如果打开了连接,则关闭它
if(this.sqlConnection1.State==ConnectionState.Open)
{
this.sqlConnection1.Close();
}
}


}


2006-06-02 07:20
快速回复:修改功能
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017612 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved