Here is some code that demonstrates the error I was researching. The link you shared references SP 1. I'm hoping to find a list for SP 2 now.
CREATE CURSOR csrTest (pkid i, alpha c(20), timestamp t null) INSERT INTO csrTest VALUES (1, "A", DATETIME()) INSERT INTO csrTest VALUES (2, "B", null) LOCAL ox as XMLAdapter, ot as XMLTable, ct ctn = STRCONV("TestModel", 12) ox = CREATEOBJECT("xmlAdapter") ox.XMLSchemaLocation = "" ox.RespectNesting = .T. ox.FormattedOutput = .F. ox.PreserveWhiteSpace = .F. ox.AddTableSchema("csrTest", .T., ctn) ox.XMLName = STRCONV("TestModelList", 12) ot = ox.Tables(ctn) && This line errors in VFP 9 SP 1 (3504), not SP 2 (7423) ot.Fields(STRCONV("pkid", 12)).XmlName = STRCONV("Id", 12) ot.Fields(STRCONV("alpha", 12)).XmlName = STRCONV("Alpha", 12) ot.Fields(STRCONV("timestamp", 12)).XmlName = STRCONV("TimeStamp", 12) ot.Fields(STRCONV("TimeStamp", 12)).IsNull = .T.
-----Original Message----- From: ProfoxTech [mailto:profoxtech-bounces@leafe.com] On Behalf Of Koen Piller Sent: Tuesday, June 11, 2019 12:59 PM To: profoxtech@leafe.com Subject: Re: VFP 9 SP fix lists
Hi, What does your errorhandler learn you on this error? Koen