XML Schema created with ADO 2.5

admin

Administrator
Staff member
I have an XML Schema for an MS Access 97 database that was created using ADO2.5, the Microsoft.Jet.OLEDB.4.0 provider, and the OpenSchema method ofthe ADO connection object as follows:Set recordset = conn.OpenSchema(adSchemaColumns)recordset.save "H:\XMLOut\ColumnsSchema.xml", adPersistXMLThe ColumnsSchema.xml file has all the information I need to re-create thedatabase columns except the AllowZeroLength property of the text columns.Is it in there somewhere, would it be in a different schema created by conn.OpenSchema,or is there just no way to get it using XML schema created this way? TIA
 
Back
Top