boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - A quick question about Access..
相关主题
为什么我的vs2005不能打开Access文件
vs2005 beta download
Free Beta1
哪位大侠指点一下 DOT NET 哪里有下?
GET VS2005 BETA2 FOR FREE
difference between VS2005 and VS2003
VS2005能和VS2003装在一个OS上么?
VS2005 coming in Nov
Programming .NET Components
vs2005的正式版出来没有?
相关话题的讨论汇总
话题: access话题: file话题: click
进入DotNet版参与讨论
1 (共1页)
c**t
发帖数: 2744
1
My app display/modify a table (test) in an Access file.
Added the access file as a new dataset, VS2005 automatically created the
datatableadaper and etc.
now: the following code to update the access but failed:
...btn_Click(..)
{
this.testBindingSource.EndEdit();
db1DataSet.testDataTable modifiedRecs = (db1DataSet.testDataTable)this.
db1DataSet.test.GetChanges(DataRowState.Modified);
if( modifiedRecs != null)
{
this.testTableAdapter.Update(modifiedRecs)
c**t
发帖数: 2744
2
The same code worked for SQL Server. Is this a bug of the Jet adapter?

【在 c**t 的大作中提到】
: My app display/modify a table (test) in an Access file.
: Added the access file as a new dataset, VS2005 automatically created the
: datatableadaper and etc.
: now: the following code to update the access but failed:
: ...btn_Click(..)
: {
: this.testBindingSource.EndEdit();
: db1DataSet.testDataTable modifiedRecs = (db1DataSet.testDataTable)this.
: db1DataSet.test.GetChanges(DataRowState.Modified);
: if( modifiedRecs != null)

1 (共1页)
进入DotNet版参与讨论
相关主题
vs2005的正式版出来没有?
vs2005的viso还有吗?
自动化的问题 (WebBrowser)
vs2005 team suite rtm里的msdn是什么时间的版本?
Why this c# program from msdn failed?
Do we still need DAL
VS 2005 Pro Installaion
VS2005 SP1 is out
visual studio 和 中文
VS2005还支持COM吗?
相关话题的讨论汇总
话题: access话题: file话题: click