質問

We have two tables which have more than 250 fields. We need to read and update data using one Recordset (ADO) at once and not working with tables separately (in vb 6) but seems that Ms_access has limitation on number of fields (250).

Any suggestion ? Thank you.

役に立ちましたか?

解決

The Access limit for Number of fields in a table = 255. That limit also applies to queries. And the same limit is "inherited" by recordsets based on those tables or queries.

You will have to refactor somehow: redesign the tables; split your recordset processing into batches which handle <= 255 fields.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top