FoxLearner
Programmer
Hi All
I am new to use XMLAdapter. I just started to paly with it, as we are going to use it in the next version of my project.
I see that whenever I use toCursor() method, the "string" fields in the schema are converted to "memo" fields in the cursor. Datetime, boolean and int fields are doing fine.
Here is what the schema is like:
<xs:element name="GroupInformation">
<xs:complexType>
<xs:sequence>
<xs:element name="Application" type="xs:string" minOccurs="0" />
<xs:element name="UserName" type="xs:string" minOccurs="0" />
<xs:element name="UserType" type="xs:string" minOccurs="0" />
........
.........
Here is what the code is like:
FOR EACH xx IN oadapter.tables
xx.tocursor()
ENDFOR
Am I doing some thing wrong or are there some attributes of the XMLAdapter that need to be set before doing it?
Thanks and Regards
FoxLearner
I am new to use XMLAdapter. I just started to paly with it, as we are going to use it in the next version of my project.
I see that whenever I use toCursor() method, the "string" fields in the schema are converted to "memo" fields in the cursor. Datetime, boolean and int fields are doing fine.
Here is what the schema is like:
<xs:element name="GroupInformation">
<xs:complexType>
<xs:sequence>
<xs:element name="Application" type="xs:string" minOccurs="0" />
<xs:element name="UserName" type="xs:string" minOccurs="0" />
<xs:element name="UserType" type="xs:string" minOccurs="0" />
........
.........
Here is what the code is like:
FOR EACH xx IN oadapter.tables
xx.tocursor()
ENDFOR
Am I doing some thing wrong or are there some attributes of the XMLAdapter that need to be set before doing it?
Thanks and Regards
FoxLearner