DataColumn's AutoIncrement Returns False Always

荒凉一梦 提交于 2019-12-06 14:21:12

To make your code work you need to add (before the call to Fill method) just

  dataAdapter.MissingSchemaAction = MissingSchemaAction.AddWithKey

This will force the adapter to retrieve the information about primary keys and autonumber fields

MSDN MissingSchemaAction enumeration

ron
ds = new dataset()

dataAdapter.Fill(ds,0,1,"Teachers")

dataAdapter.FillSchema(ds, SchemaType.Source, "Teachers");

dt = ds.tables(0)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!