急!C#操作Access update语句

C#操作Accessupdate语句执行不报错也返回了影响行数但打开Access就是没更新数据以下是代码:if(newDbHelp().ExecuteUpdate("Up... C#操作Access update语句执行不报错 也返回了影响行数 但打开Access就是没更新数据 以下是代码:
if (new DbHelp().ExecuteUpdate("Update Fees Set feeTitleId = " + this.cbFeeTitle.SelectedValue.ToString() + " , fee = " + this.tbFee.Text.Trim() + " , feeDetail = '" + this.tbFeeDetail.Text + "' Where feeId=" + this.feeId) == 1)
{
MessageBox.Show("保存成功!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
MessageBox.Show("保存失败!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}

DbHelp:
public int ExecuteUpdate(string cmdText)
{
int rows = -1;
this.command = new OleDbCommand();
command.Connection = con;
command.CommandType = CommandType.Text;
command.CommandText = cmdText;

try
{
this.con.Open();
rows=this.command.ExecuteNonQuery();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
if (this.con.State != ConnectionState.Closed)
{
this.con.Close();
}
}
return rows;
}
展开
 我来答
我的文档小铺子
2009-12-13 · 关注铺子不迷路,前沿科普,技术分享,科幻小短文
我的文档小铺子
采纳数:107 获赞数:1108

向TA提问 私信TA
展开全部
没有任何问题你看错了数据库,数据库在Bin下面
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式