本文介绍了什么是表属性2?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在做一些我正在处理的应用程序的强迫性文档,其中包括表格属性。 我有6个属性的列表:


dbSystemObject   -2147483646

dbHiddenObject  1

dbAttachExclusive   65536

dbAttachSavePWD   131072

dbAttachedODBC   536870912

dbAttachedTable    1073741824


但系统表似乎与其中任何一个都不匹配。 例如:


MSysRelationships   -2147483648

MSysIMEXSpecs  2


如果我这样做:" -2147483648和  dbSystemObject"我得到:" -2147483648"。 好吧,所以它是一个系统对象,类似。

但如果我这样做:"2和  dbSystemObject""我得到:"2"。 嗯,现在我很困惑。


它们显然都是系统对象,但数字与常数值不完全匹配。 是否有一些未记录的属性? 我是否理解"阅读"的方法它们是否正确?

解决方案

I'm doing some obsessive documentation of an app I'm working on, which includes table attributes.  I have the list of the 6 attributes:

dbSystemObject  -2147483646
dbHiddenObject  1
dbAttachExclusive  65536
dbAttachSavePWD  131072
dbAttachedODBC  536870912
dbAttachedTable  1073741824

The system tables, however, don't seem to match any of them.  For example:

MSysRelationships  -2147483648
MSysIMEXSpecs  2

If I do: "-2147483648 And dbSystemObject" I get: "-2147483648".  OK, so it's a system object, sort of.
But if I do: "2 And dbSystemObject" I get: "2".  Well, now I'm confused.

They're obviously both system objects, but the numbers don't exactly match the constant values.  Are there some undocumented attributes?  Am I understanding the method for "reading" them correctly?

解决方案


这篇关于什么是表属性2?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-17 20:03
查看更多