DAO与ADO创建索引时一些属性的区别及对应关系
DAO:
Required =
True
IgnoreNulls = True Or False
ADO:
adIndexNullsDisallow 空值是不允许的,
索引项没有加上
DAO:
Required = False
IgnoreNulls =
True
ADO:
adIndexNullsIgnore 索引字段允许空值, 但索引项不添加
DAO:
Required =
False
IgnoreNulls = False
ADO:
adIndexNullsAllow 索引字段允许空值,添加索引项