当前位置: 技术问答>java相关
JBuilder中数据库设计的问题?
来源: 互联网 发布时间:2015-08-26
本文导语: 我用JBuilder以jdbNavToolBar,queryDataSet,dBDisposeMonitor等组件,按照Sample中的提示建立一个以基于JdbcOdbcBridge的应用程序,运行后界面正常,但当要在jdbTable上修改数据时提示: DataSet has no unique row identifiers. Note: For QueryD...
我用JBuilder以jdbNavToolBar,queryDataSet,dBDisposeMonitor等组件,按照Sample中的提示建立一个以基于JdbcOdbcBridge的应用程序,运行后界面正常,但当要在jdbTable上修改数据时提示:
DataSet has no unique row identifiers.
Note: For QueryDataSets you need to disable metaDataUpdate.ROWID in the
MetaDataUpdate property, in addition to setting the RowId property on a
column.
按StackTrace后提示:
See com.borland.dx.dataset.DataSetException error code: BASE+37......
DataSet has no unique row identifiers.
Note: For QueryDataSets you need to disable metaDataUpdate.ROWID in the
MetaDataUpdate property, in addition to setting the RowId property on a
column.
按StackTrace后提示:
See com.borland.dx.dataset.DataSetException error code: BASE+37......
|
这么做就OK了:
在你所添加的queryDataSet的metaDataUpdata属性栏中去掉Rowid选项,并且在每个column的rowid属性栏中选择True。
在你所添加的queryDataSet的metaDataUpdata属性栏中去掉Rowid选项,并且在每个column的rowid属性栏中选择True。