标题:想通过函数实现对数据库操作 。可是不行
取消只看楼主
laplas
Rank: 1
等 级:新手上路
帖 子:110
专家分:0
注 册:2006-2-28
 问题点数:0 回复次数:0 
想通过函数实现对数据库操作 。可是不行

打算在别的类里,调用该函数,更新数据库
ds=dataset; myconnnection=sqlconnnection
TempSqlStr是sql语句 如select * from commodity_tbl


public DataSet UpdateDataBase(string TempSqlStr,string TempTableName)
{
this.ds.Clear();
this.strSQL=TempSqlStr;
this.myConnection=new SqlConnection(connectionString);
this.da=new SqlDataAdapter(this.strSQL,this.myConnection);
this.sqlCmdBld = new SqlCommandBuilder(da);
this.da.Update(ds,TempTableName);
return ds;
}
可是,没有反应。数据库自然也没更新,怎么回事

搜索更多相关主题的帖子: 数据库 函数 
2006-04-25 11:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-59970-1-1.html




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

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