Microsoft KB Archive/190201

From BetaArchive Wiki

Article ID: 190201

Article Last Modified on 3/2/2005



APPLIES TO

  • Microsoft ActiveX Data Objects 1.5
  • Microsoft ActiveX Data Objects 2.0
  • Microsoft ActiveX Data Objects 2.1



This article was previously published under Q190201

SYMPTOMS

The constant adSchemaReferentialConstraints is a parameter that you can pass to the OpenSchema method. In the type library it appears as adSchemaReferentialContraints. Notice the "s" is missing in "Contraints". The constant is correctly spelled "adSchemaReferentialConstraints" in the documentation.

CAUSE

The constant is misspelled in the type library.

RESOLUTION

The spelling of the constant has been fixed in MDAC 2.1 and later.

Visual Basic users are fortunate since the help of IntelliSense selects the constraint without checking the spelling of the constant.

VBScript users must misspell the constant in code (that is, adSchemaReferentialContraints) or use the numeric value 9.

For example:

   Set rs = OpenSchema( 9, criteriaArray)
   Set rs = OpenSchema(adSchemaReferentialContraints,criteriaArray)
                

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem has been corrected in MDAC 2.1.

MORE INFORMATION

The constant adSchemaReferentialConstraints is spelled correctly in the Microsoft Developer Network (MSDN) and Data Access Software Development Kit (SDK) documentation.

REFERENCES

For additional information about ADO OpenSchema Method, please see the following article in the Microsoft Knowledge Base:

186246 HOWTO: Use the ADO OpenSchema Method in Visual Basic


Keywords: kbbug kbfix kbnoupdate kbdatabase kbado210fix kbmdacnosweep KB190201